-
Notifications
You must be signed in to change notification settings - Fork 0
Integrating plugin
Abid Ali edited this page Sep 7, 2017
·
2 revisions
There is mainly two way to integrate this plugin.
Use pom based repository for fetching plugin i.e
- Add this in your pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
- If you are using private nexus repository then,
2.1. Add https://jitpack.io as a new maven2 (proxy) repository in Nexus.
2.2. Add that repository to Maven-public group.
<plugins>
...
<plugin>
<groupId>com.github.aaabidunique</groupId>
<artifactId>dynamic-property-maven-plugin</artifactId>
<version>1.0.1</version>
<executions>
<execution>
...
</execution>
</executions>
</plugin>
...
</plugins>