Fix build error due to missing 0.7.0 artifacts 22/101922/1
authorDan Timoney <dtimoney@att.com>
Tue, 18 Feb 2020 17:38:55 +0000 (12:38 -0500)
committerDan Timoney <dtimoney@att.com>
Tue, 18 Feb 2020 17:38:58 +0000 (12:38 -0500)
Fixed to use latest CCSDK snapshot version instead of using version 0.7.0,
which was not released due to bug in auto-release process.

Change-Id: I14a764c9999bd533d7e0029cc0361f556749d65e
Issue-ID: SDNC-1077
Signed-off-by: Dan Timoney <dtimoney@att.com>
Former-commit-id: dc7a05c352b80786efd7f6bb1fcb8845dbc57bbc

installation/sdnc/pom.xml
platform-logic/setup/pom.xml

index 7eb4e62..3d8d14e 100644 (file)
@@ -22,8 +22,8 @@
         <sdnc.project.version>${project.version}</sdnc.project.version>
         <sdnc.build.timestamp>${maven.build.timestamp}</sdnc.build.timestamp>
         <sdnc.northbound.version>1.8.0-SNAPSHOT</sdnc.northbound.version>
-        <ccsdk.docker.version>0.7.0</ccsdk.docker.version>
-        <ccsdk.features.version>0.7.0</ccsdk.features.version>
+        <ccsdk.docker.version>0.7.1-STAGING-latest</ccsdk.docker.version>
+        <ccsdk.features.version>0.7.1-SNAPSHOT</ccsdk.features.version>
         <sdnc.keystore>org.onap.sdnc.p12</sdnc.keystore>
         <sdnc.keypass><![CDATA[ff^G9D]yf&r}Ktum@BJ0YB?N]]></sdnc.keypass>
         <sdnc.secureport>8443</sdnc.secureport>
index fd9b986..be43fdd 100644 (file)
@@ -1,8 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-       <modelVersion>4.0.0</modelVersion>
+    <modelVersion>4.0.0</modelVersion>
 
-       <parent>
+    <parent>
         <groupId>org.onap.ccsdk.parent</groupId>
         <artifactId>odlparent-lite</artifactId>
         <version>1.5.1</version>
     </parent>
 
     <groupId>org.onap.sdnc.oam</groupId>
-       <artifactId>platform-logic-setup</artifactId>
-       <version>1.8.0-SNAPSHOT</version>
-       <packaging>pom</packaging>
+    <artifactId>platform-logic-setup</artifactId>
+    <version>1.8.0-SNAPSHOT</version>
+    <packaging>pom</packaging>
 
     <name>sdnc-oam :: platform-logic :: ${project.artifactId}</name>
-       <description>Copies base ONAP platform-logic</description>
-
-       <build>
-               <plugins>
-
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-dependency-plugin</artifactId>
-                               <version>3.0.0</version>
-                               <executions>
-                                       <execution>
-                                               <id>unpack</id>
-                                               <phase>validate</phase>
-                                               <goals>
-                                                       <goal>unpack</goal>
-                                               </goals>
-                                               <configuration>
-                                                       <artifactItems>
-                                                               <artifactItem>
-                                                                       <groupId>org.onap.ccsdk.distribution</groupId>
-                                                                       <artifactId>platform-logic-installer</artifactId>
-                                                                       <version>${ccsdk.distribution.version}</version>
-                                                                       <type>zip</type>
-                                                                       <overWrite>true</overWrite>
-                                                                       <outputDirectory>../target</outputDirectory>
-                                                               </artifactItem>
-                                                       </artifactItems>
-                                                       <overWriteReleases>false</overWriteReleases>
-                                                       <overWriteSnapshots>true</overWriteSnapshots>
-                                                       <overWriteIfNewer>true</overWriteIfNewer>
-                                                       <localRepositoryDirectory>../target/repository</localRepositoryDirectory>
-                                               </configuration>
-                                       </execution>
-                               </executions>
-                       </plugin>
-
-
-
-
-
-               </plugins>
-       </build>
+    <description>Copies base ONAP platform-logic</description>
+
+    <properties>
+        <ccsdk.distribution.version>0.7.1-SNAPSHOT</ccsdk.distribution.version>
+    </properties>
+
+    <build>
+        <plugins>
+
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-dependency-plugin</artifactId>
+                <version>3.0.0</version>
+                <executions>
+                    <execution>
+                        <id>unpack</id>
+                        <phase>validate</phase>
+                        <goals>
+                            <goal>unpack</goal>
+                        </goals>
+                        <configuration>
+                            <artifactItems>
+                                <artifactItem>
+                                    <groupId>org.onap.ccsdk.distribution</groupId>
+                                    <artifactId>platform-logic-installer</artifactId>
+                                    <version>${ccsdk.distribution.version}</version>
+                                    <type>zip</type>
+                                    <overWrite>true</overWrite>
+                                    <outputDirectory>../target</outputDirectory>
+                                </artifactItem>
+                            </artifactItems>
+                            <overWriteReleases>false</overWriteReleases>
+                            <overWriteSnapshots>true</overWriteSnapshots>
+                            <overWriteIfNewer>true</overWriteIfNewer>
+                            <localRepositoryDirectory>../target/repository</localRepositoryDirectory>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
 </project>