Update POM files to allow maven deploy process 09/88009/3
authorKotagiri, Ramprasad (rp5662) <rp5662@att.com>
Fri, 17 May 2019 15:03:49 +0000 (11:03 -0400)
committerKotagiri, Ramprasad (rp5662) <rp5662@att.com>
Fri, 17 May 2019 23:18:17 +0000 (19:18 -0400)
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>
ccsdk-app-common/pom.xml
ccsdk-app-os/pom.xml
ccsdk-app-overlay/pom.xml
pom.xml

index 629eb96..3e46f4d 100644 (file)
                                        </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>
index 4c76eb7..e9c6480 100644 (file)
                                        </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>
        
index 430f599..069bbbc 100644 (file)
                                        <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>
 
diff --git a/pom.xml b/pom.xml
index 79d965a..1563493 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -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 -->
         </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>