diff options
author | Michael Arrastia <MArrasti@amdocs.com> | 2018-03-23 17:56:37 +0000 |
---|---|---|
committer | Michael Arrastia <MArrasti@amdocs.com> | 2018-03-23 17:56:37 +0000 |
commit | 342dbc8a4af828aa7e918138dc693b9d4f85c2a0 (patch) | |
tree | db9d6062b9249b6b2e73eda44fa5cd7305138bbf | |
parent | 7a660231a8a92dbe1b619ed56cd2c24a8ecacac8 (diff) |
Update module poms to skip maven deploy
The rationale for this change is that the only deployable artifact is
the champ microservice as a docker component. The intention is to
allow the failing Jenkins merge job to complete.
Issue-ID: AAI-927
Change-Id: Ib73470697cd79d12b8d1d47df9afa930f4768d8f
Signed-off-by: Michael Arrastia <MArrasti@amdocs.com>
-rw-r--r-- | champ-lib/champ-core/pom.xml | 13 | ||||
-rw-r--r-- | champ-lib/champ-janus/pom.xml | 11 | ||||
-rw-r--r-- | champ-lib/champ-titan/pom.xml | 11 | ||||
-rw-r--r-- | champ-lib/pom.xml | 17 | ||||
-rw-r--r-- | champ-service-deps-janus/pom.xml | 7 | ||||
-rw-r--r-- | champ-service-deps-titan/pom.xml | 7 | ||||
-rw-r--r-- | champ-service/pom.xml | 4 |
7 files changed, 45 insertions, 25 deletions
diff --git a/champ-lib/champ-core/pom.xml b/champ-lib/champ-core/pom.xml index 4e55bff..840fc61 100644 --- a/champ-lib/champ-core/pom.xml +++ b/champ-lib/champ-core/pom.xml @@ -50,7 +50,7 @@ limitations under the License. <version>${event.client.version}</version> </dependency> <!-- Event Bus Library - END --> - + <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy</artifactId> @@ -104,7 +104,14 @@ limitations under the License. </execution> </executions> </plugin> - <!-- + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + <!-- <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> @@ -135,7 +142,7 @@ limitations under the License. </execution> </executions> </plugin> - --> + --> </plugins> </build> </project> diff --git a/champ-lib/champ-janus/pom.xml b/champ-lib/champ-janus/pom.xml index dbba4e4..1a0475d 100644 --- a/champ-lib/champ-janus/pom.xml +++ b/champ-lib/champ-janus/pom.xml @@ -173,7 +173,14 @@ limitations under the License. </execution> </executions> </plugin> - <!-- + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + <!-- <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> @@ -204,7 +211,7 @@ limitations under the License. </execution> </executions> </plugin> - --> + --> </plugins> </build> </project> diff --git a/champ-lib/champ-titan/pom.xml b/champ-lib/champ-titan/pom.xml index 15e14da..ffff015 100644 --- a/champ-lib/champ-titan/pom.xml +++ b/champ-lib/champ-titan/pom.xml @@ -172,7 +172,14 @@ limitations under the License. </execution> </executions> </plugin> - <!-- + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + <!-- <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> @@ -203,7 +210,7 @@ limitations under the License. </execution> </executions> </plugin> - --> + --> </plugins> </build> </project> diff --git a/champ-lib/pom.xml b/champ-lib/pom.xml index 18070dd..921e733 100644 --- a/champ-lib/pom.xml +++ b/champ-lib/pom.xml @@ -274,23 +274,8 @@ limitations under the License. <plugin> <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>${onap.nexus.url}</nexusUrl> - <stagingProfileId>176c31dfe190a</stagingProfileId> - <serverId>ecomp-staging</serverId> + <skip>true</skip> </configuration> </plugin> <!-- diff --git a/champ-service-deps-janus/pom.xml b/champ-service-deps-janus/pom.xml index fcf019a..8c99d0a 100644 --- a/champ-service-deps-janus/pom.xml +++ b/champ-service-deps-janus/pom.xml @@ -111,6 +111,13 @@ limitations under the License. </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> </plugins> </build> </project>
\ No newline at end of file diff --git a/champ-service-deps-titan/pom.xml b/champ-service-deps-titan/pom.xml index d1046ed..0aebf37 100644 --- a/champ-service-deps-titan/pom.xml +++ b/champ-service-deps-titan/pom.xml @@ -109,6 +109,13 @@ limitations under the License. </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> </plugins> </build> </project>
\ No newline at end of file diff --git a/champ-service/pom.xml b/champ-service/pom.xml index cb2848f..2168783 100644 --- a/champ-service/pom.xml +++ b/champ-service/pom.xml @@ -197,7 +197,7 @@ limitations under the License. <skip>true</skip> </configuration> </plugin> - <!-- + <!-- <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> @@ -217,7 +217,7 @@ limitations under the License. </execution> </executions> </plugin> - --> + --> <plugin> <groupId>com.spotify</groupId> <artifactId>docker-maven-plugin</artifactId> |