aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Brady <pb071s@att.com>2018-05-21 14:32:13 -0700
committerPatrick Brady <pb071s@att.com>2018-05-21 14:34:24 -0700
commit0ca0e36d43c8cd56bf93bec7ee664bdc5c5a0533 (patch)
tree36eb0c2d2f60e6c97d57a851caacfdac5f1c8cf6
parent280439f864b567c9186f1763b40523c5d2a5c629 (diff)
Add maven version plugin
This plugin configuration is needed so jenkins can update the version number of the proxy project to the release number when the release job is run. Change-Id: I30f02b150b71cb1cbaea6a5f1ccdac03d8843889 Signed-off-by: Patrick Brady <pb071s@att.com> Issue-ID: APPC-910
-rw-r--r--pom.xml10
1 files changed, 10 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 55cb608..4f2b1e2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -63,6 +63,16 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property.
<build>
<plugins>
+ <!-- Allows the maven version plugin to work even when child modules
+ don't use this pom as a parent. -->
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>versions-maven-plugin</artifactId>
+ <version>2.5</version>
+ <configuration>
+ <processAllModules>true</processAllModules>
+ </configuration>
+ </plugin>
<!--maven staging plugin -->
<plugin>
<groupId>org.sonatype.plugins</groupId>