diff options
author | ms236b <ms236b@att.com> | 2019-05-08 14:11:37 -0400 |
---|---|---|
committer | ms236b <ms236b@att.com> | 2019-05-08 14:44:25 -0400 |
commit | 386d0adae833cce21ae3a847c21dce49eecd02c4 (patch) | |
tree | 7fa531726301fd3eb44975bff6199b4f21d20af1 | |
parent | e5da4c6766565b66270872380a17f62bacbcafac (diff) |
fixed the cli pom4.0.0-ONAP1.0.0dublin
Changed the cli pom back to how it was before bp gen/fixed other pom
Issue-ID: DCAEGEN2-1125
Change-Id: I4d2b78c12c5b423d05ee8eab9cf16e132fdc7953
Signed-off-by: ms236b <ms236b@att.com>
-rw-r--r-- | dcae-cli/pom.xml | 3 | ||||
-rw-r--r-- | pom.xml | 27 |
2 files changed, 18 insertions, 12 deletions
diff --git a/dcae-cli/pom.xml b/dcae-cli/pom.xml index 8e2e2fe..b6db3e6 100644 --- a/dcae-cli/pom.xml +++ b/dcae-cli/pom.xml @@ -49,6 +49,9 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property. <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> + <configuration> + <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo> + </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> @@ -38,7 +38,7 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property. <packaging>pom</packaging> <modules> <module>dcae-cli</module> - <module>component-json-schemas</module> + <module>component-json-schemas</module> </modules> <properties> @@ -54,19 +54,23 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property. <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> + <configuration> + <skipNexusStagingDeployMojo>false</skipNexusStagingDeployMojo> + <skip>false</skip> + </configuration> </plugin> - <!-- <plugin> + <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> - This version supports the "deployAtEnd" parameter + <!-- This version supports the "deployAtEnd" parameter --> <version>2.8</version> <configuration> <skip>true</skip> </configuration> - </plugin> --> + </plugin> <!-- first disable the default Java plugins at various stages --> <!-- maven-resources-plugin is called during "*resource" phases by default behavior. it prepares - the resources dir. we do not need it + the resources dir. we do not need it --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> @@ -74,8 +78,8 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property. <configuration> <skip>true</skip> </configuration> - </plugin> --> - <!-- maven-compiler-plugin is called during "compile" phases by default behavior. we do not need it + </plugin> + <!-- maven-compiler-plugin is called during "compile" phases by default behavior. we do not need it --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> @@ -83,8 +87,7 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property. <configuration> <skip>true</skip> </configuration> - </plugin> --> - + </plugin> <!-- maven-jar-plugin is called during "compile" phase by default behavior. we do not need it --> <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> @@ -98,7 +101,7 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property. </executions> </plugin> --> <!-- maven-install-plugin is called during "install" phase by default behavior. it tries to copy stuff under - target dir to ~/.m2. we do not need it + target dir to ~/.m2. we do not need it --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> @@ -106,7 +109,7 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property. <configuration> <skip>true</skip> </configuration> - </plugin> --> + </plugin> <!-- maven-surefire-plugin is called during "test" phase by default behavior. it triggers junit test. we do not need it --> <plugin> @@ -123,7 +126,7 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property. <version>1.2.1</version> <configuration> <executable>${session.executionRootDirectory}/mvn-phase-script.sh</executable> - <environmentVariables> + <environmentVariables> --> <!-- make mvn properties as env for our script --> <!-- make mvn properties as env for our script --> <MVN_PROJECT_GROUPID>${project.groupId}</MVN_PROJECT_GROUPID> |