ContaAzul / jaxrs-path-analyzer

A maven plugin built to break the build when a double mapping declaration is found.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jaxrs-path-analyzer

A maven plugin built to break the build when a double mapping declaration is found.

How to use

As the plugin is not hosted, you'll need to download the project and install it locally, you can do it by running:

mvn install

After that, in your project's pom.xml you have to declare using this plugin, simply copy and paste the snippet below in the plugins inside the build section.

<plugins>
<plugin>
<groupId>com.contaazul</groupId>
<artifactId>jaxrs-path-analyzer</artifactId>
<version>0.0.1</version>
<dependencies>
<dependency>
<groupId>org.jboss</groupId>
<artifactId>jandex</artifactId>
<version>2.0.1.Final</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>analyze-paths</id>
<phase>install</phase>
<goals>
<goal>analyze-paths</goal>
</goals>
</execution>
</executions>
</plugin>

About

A maven plugin built to break the build when a double mapping declaration is found.

License:MIT License


Languages

Language:Java 100.0%