sebastiandaschner blog


Released JAX-RS Analyzer v0.5

#jaxrsanalyzer sunday, june 14, 2015

Today I released version 0.5 of the JAX-RS Analyzer. Following features / improvements have been made:

  • Improved handling of abstract JAX-RS methods

  • Added more functionality to the command line tool (e.g. ability to specify several class paths)

  • Changed CLI tool interface to convenient Unix-style parameters

  • Added more log information — especially on debug level

  • More debug log information for the Maven plugin (when specifying the -X debug option)

The Maven plugin usage is updated to:

<plugin>
    <groupId>com.sebastian-daschner</groupId>
    <artifactId>jaxrs-analyzer-maven-plugin</artifactId>
    <version>0.5</version>
    <executions>
        <execution>
            <goals>
                <goal>analyze-jaxrs</goal>
            </goals>
            <configuration>
                <!-- Available backends are plaintext (default), swagger and asciidoc -->
                <backend>plaintext</backend>
                <!-- Domain of the deployed project, defaults to example.com -->
                <deployedDomain>example.com</deployedDomain>
            </configuration>
        </execution>
    </executions>
</plugin>

Have a look at the current version.

 

Found the post useful? Subscribe to my newsletter for more free content, tips and tricks on IT & Java: