diff options
author | Singal, Kapil (ks220y) <ks220y@att.com> | 2021-02-01 22:06:16 -0500 |
---|---|---|
committer | Singal, Kapil (ks220y) <ks220y@att.com> | 2021-02-01 22:48:21 -0500 |
commit | e1d0e25da4f0d49adcd6d2bc2dc5f4f0bef4adfd (patch) | |
tree | 68f1cc59b9f717357bd582e1b051dc0834741dd8 /dependencies-bom | |
parent | 6fa7fc955092595ed2dc4760a569ae178424e4a1 (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 'dependencies-bom')
-rw-r--r-- | dependencies-bom/pom.xml | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/dependencies-bom/pom.xml b/dependencies-bom/pom.xml index f5b5a913..efbae7ef 100644 --- a/dependencies-bom/pom.xml +++ b/dependencies-bom/pom.xml @@ -142,8 +142,8 @@ <version>2.2.8</version> <exclusions> <exclusion> - <artifactId>stax-api</artifactId> <groupId>javax.xml.stream</groupId> + <artifactId>stax-api</artifactId> </exclusion> </exclusions> </dependency> @@ -305,11 +305,25 @@ </dependency> </dependencies> </dependencyManagement> - <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> </dependencies> + + <build> + <plugins> + <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> </project> |