summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorSingal, Kapil (ks220y) <ks220y@att.com>2021-02-01 22:06:16 -0500
committerSingal, Kapil (ks220y) <ks220y@att.com>2021-02-01 22:48:21 -0500
commite1d0e25da4f0d49adcd6d2bc2dc5f4f0bef4adfd (patch)
tree68f1cc59b9f717357bd582e1b051dc0834741dd8 /pom.xml
parent6fa7fc955092595ed2dc4760a569ae178424e4a1 (diff)
Adding maven-deploy-plugin with deployeAtEnd true
Issue-ID: CCSDK-3126 Signed-off-by: Singal, Kapil (ks220y) <ks220y@att.com> Change-Id: I5c89ab63f58084808038e58b413bf51c29bcb93b
Diffstat (limited to 'pom.xml')
-rwxr-xr-xpom.xml36
1 files changed, 23 insertions, 13 deletions
diff --git a/pom.xml b/pom.xml
index 1bb860a6..2a583705 100755
--- a/pom.xml
+++ b/pom.xml
@@ -36,6 +36,29 @@
<onap.nexus.staging.profile-id>176c31dfe190a</onap.nexus.staging.profile-id>
</properties>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>versions-maven-plugin</artifactId>
+ <version>2.5</version>
+ <configuration>
+ <processAllModules>true</processAllModules>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <!-- This version supports the "deployAtEnd" parameter -->
+ <version>2.8</version>
+ <configuration>
+ <skip/>
+ <deployAtEnd>true</deployAtEnd>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
<profiles>
<profile>
<id>dependency-list</id>
@@ -90,17 +113,4 @@
</build>
</profile>
</profiles>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>versions-maven-plugin</artifactId>
- <version>2.5</version>
- <configuration>
- <processAllModules>true</processAllModules>
- </configuration>
- </plugin>
- </plugins>
- </build>
</project>