diff options
author | Kotagiri, Ramprasad (rp5662) <rp5662@att.com> | 2019-05-17 11:03:49 -0400 |
---|---|---|
committer | Kotagiri, Ramprasad (rp5662) <rp5662@att.com> | 2019-05-17 19:18:17 -0400 |
commit | fd5048d6050207cc60ac5155a9a6c87a182fb524 (patch) | |
tree | 4897062db5b83713558fdb846e5413e894b55aa5 | |
parent | 2e025b025626d2d638d0699f23af726bb7b78710 (diff) |
Update POM files to allow maven deploy process
Remove instruction in POM files that was skipping mvn deploy step.
Build artifacts are allowed to be deployed in deploy phase.
Issue-ID: CCSDK-1011
Change-Id: Ibe924291607ada34ac60f912fe377df6ea4bd2cd
Signed-off-by: Kotagiri, Ramprasad (rp5662) <rp5662@att.com>
-rw-r--r-- | ccsdk-app-common/pom.xml | 9 | ||||
-rw-r--r-- | ccsdk-app-os/pom.xml | 10 | ||||
-rw-r--r-- | ccsdk-app-overlay/pom.xml | 9 | ||||
-rw-r--r-- | pom.xml | 15 |
4 files changed, 1 insertions, 42 deletions
diff --git a/ccsdk-app-common/pom.xml b/ccsdk-app-common/pom.xml index 629eb96..3e46f4d 100644 --- a/ccsdk-app-common/pom.xml +++ b/ccsdk-app-common/pom.xml @@ -131,15 +131,6 @@ </execution> </executions> </plugin> - <!-- no deployment needed --> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-deploy-plugin</artifactId> - <version>2.8</version> - <configuration> - <skip>true</skip> - </configuration> - </plugin> <!-- jacoco --> <plugin> <groupId>org.jacoco</groupId> diff --git a/ccsdk-app-os/pom.xml b/ccsdk-app-os/pom.xml index 4c76eb7..e9c6480 100644 --- a/ccsdk-app-os/pom.xml +++ b/ccsdk-app-os/pom.xml @@ -141,16 +141,6 @@ </overlays> </configuration> </plugin> - - <!-- no deployment needed --> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-deploy-plugin</artifactId> - <version>2.8</version> - <configuration> - <skip>true</skip> - </configuration> - </plugin> </plugins> </build> diff --git a/ccsdk-app-overlay/pom.xml b/ccsdk-app-overlay/pom.xml index 430f599..069bbbc 100644 --- a/ccsdk-app-overlay/pom.xml +++ b/ccsdk-app-overlay/pom.xml @@ -34,15 +34,6 @@ <target>1.8</target> </configuration> </plugin> - <!-- no deployment needed --> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-deploy-plugin</artifactId> - <version>2.8</version> - <configuration> - <skip>true</skip> - </configuration> - </plugin> </plugins> </build> @@ -8,7 +8,7 @@ <parent> <groupId>org.onap.oparent</groupId> <artifactId>oparent</artifactId> - <version>1.2.3</version> + <version>2.0.0</version> </parent> <!-- Maven parent project for convenience of building and cleaning --> @@ -38,17 +38,4 @@ </snapshotRepository> </distributionManagement> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-deploy-plugin</artifactId> - <version>2.8</version> - <configuration> - <skip>true</skip> - </configuration> - </plugin> - </plugins> - </build> - </project> |