diff options
author | sunil unnava <su622b@att.com> | 2018-08-27 16:04:18 -0400 |
---|---|---|
committer | sunil unnava <su622b@att.com> | 2018-08-27 16:05:38 -0400 |
commit | 8dad6dfbab808df0a6209a52bd321ed436652bb6 (patch) | |
tree | f7dacc79e91fd180eb81433ab367dd25b64070fd /pom.xml | |
parent | b4968a03494fbb5a68433173d6b96193b423cd84 (diff) |
remove default-deploy phase from build lifecycle
Issue-ID: DMAAP-628
Change-Id: I1298f8a2314f0365f786371fb44b2bf4bf55d810
Signed-off-by: sunil unnava <su622b@att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 47 |
1 files changed, 29 insertions, 18 deletions
@@ -53,11 +53,8 @@ </dependencies> </plugin> - <!-- <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-jar-plugin</artifactId> - <version>3.0.2</version> - </plugin> --> + <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> + <version>3.0.2</version> </plugin> --> <plugin> <groupId>org.apache.maven.plugins</groupId> @@ -90,19 +87,33 @@ </dependencies> </plugin> - <plugin> - <!-- Disable Sonatype Nexus Extensions for Wren Security's Repo --> - <groupId>org.sonatype.plugins</groupId> - <artifactId>nexus-staging-maven-plugin</artifactId> - <extensions>false</extensions> - <executions> - <execution> - <id>injected-nexus-deploy</id> - <phase>none</phase> - </execution> - </executions> - </plugin> - + <plugin> + <groupId>org.sonatype.plugins</groupId> + <artifactId>nexus-staging-maven-plugin</artifactId> + <extensions>false</extensions> + <executions> + <execution> + <id>injected-nexus-deploy</id> + <phase>none</phase> + </execution> + </executions> + </plugin> + <plugin> + <artifactId>maven-deploy-plugin</artifactId> + <version>2.8</version> + <executions> + <execution> + <id>default-deploy</id> + <phase>none</phase> + <configuration> + <skip /> + </configuration> + </execution> + </executions> + <configuration> + <skip /> + </configuration> + </plugin> <plugin> <groupId>com.spotify</groupId> <artifactId>docker-maven-plugin</artifactId> |