diff options
author | Francis Paquette <francis.paquette@amdocs.com> | 2019-05-01 17:59:38 -0400 |
---|---|---|
committer | Francis Paquette <francis.paquette@amdocs.com> | 2019-05-01 18:07:16 -0400 |
commit | 22471531491355235b0dd22518d3f967b8094290 (patch) | |
tree | 7b628934d4ee4596c68cb82d100cce1eb7faf7b3 | |
parent | 0775c59211291505a49fbc36a08d695e4aa7af93 (diff) |
Unskipping deployment
Issue-ID: AAI-2401
Change-Id: I1885bc0226cfac2de21e36ed63a2e0dca6631262
Signed-off-by: Francis Paquette <francis.paquette@amdocs.com>
-rw-r--r-- | elasticsearch-sg/pom.xml | 25 | ||||
-rw-r--r-- | pom.xml | 7 | ||||
-rw-r--r-- | search-data-service-app/pom.xml | 15 |
3 files changed, 29 insertions, 18 deletions
diff --git a/elasticsearch-sg/pom.xml b/elasticsearch-sg/pom.xml index 322c742..5360c95 100644 --- a/elasticsearch-sg/pom.xml +++ b/elasticsearch-sg/pom.xml @@ -79,11 +79,26 @@ </configuration> </plugin> <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-deploy-plugin</artifactId> - <configuration> - <skip>true</skip> - </configuration> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <version>2.8.2</version> + <executions> + <execution> + <id>default-deploy</id> + <phase>none</phase> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.sonatype.plugins</groupId> + <artifactId>nexus-staging-maven-plugin</artifactId> + <version>1.6.7</version> + <extensions>true</extensions> + <configuration> + <nexusUrl>${nexusproxy}</nexusUrl> + <stagingProfileId>176c31dfe190a</stagingProfileId> + <serverId>ecomp-staging</serverId> + </configuration> </plugin> </plugins> </build> @@ -76,13 +76,6 @@ <skipDockerBuild>true</skipDockerBuild> </configuration> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-deploy-plugin</artifactId> - <configuration> - <skip>true</skip> - </configuration> - </plugin> </plugins> </build> diff --git a/search-data-service-app/pom.xml b/search-data-service-app/pom.xml index 5cc0ab3..978b0c5 100644 --- a/search-data-service-app/pom.xml +++ b/search-data-service-app/pom.xml @@ -395,13 +395,16 @@ </execution> </executions> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-deploy-plugin</artifactId> - <configuration> - <skip>true</skip> - </configuration> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <version>2.8.2</version> + <executions> + <execution> + <id>default-deploy</id> + <phase>none</phase> + </execution> + </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> |