[VERSION] Use official root pom 89/1089/3
authorTimoney, Daniel (dt5972) <dtimoney@att.com>
Tue, 21 Feb 2017 08:48:05 +0000 (03:48 -0500)
committerTimoney, Daniel (dt5972) <dtimoney@att.com>
Tue, 21 Feb 2017 09:27:00 +0000 (04:27 -0500)
Use version 1.0.0 of root pom

Change-Id: Icc821432b9eb68be9dfb3755f505b6bdd8b97035
Signed-off-by: Timoney, Daniel (dt5972) <dtimoney@att.com>
Former-commit-id: f8e0d3b080ae4c8069de5b7cefa6ca60dda2fe5d

13 files changed:
admportal/pom.xml
installation/admportal/pom.xml
installation/dgbuilder/pom.xml
installation/pom.xml
installation/sdnc/pom.xml
installation/src/main/yaml/docker-compose.yml [new file with mode: 0644]
installation/ubuntu/pom.xml
platform-logic/asdc-api/pom.xml
platform-logic/installer/pom.xml
platform-logic/pom.xml
platform-logic/sliapi/pom.xml
platform-logic/vnfapi/pom.xml
pom.xml

index 2fa4a33..2ce7ac0 100644 (file)
@@ -5,7 +5,7 @@
        <parent>
                <groupId>org.openecomp.sdnc.oam</groupId>
                <artifactId>sdnc-oam</artifactId>
-               <version>1.0.0-SNAPSHOT</version>
+               <version>1.0.0</version>
        </parent>
 
        <modelVersion>4.0.0</modelVersion>
@@ -13,7 +13,7 @@
        <groupId>org.openecomp.sdnc.oam</groupId>
        <artifactId>admportal</artifactId>
 
-       <version>1.0.0-SNAPSHOT</version>
+       <version>1.0.0</version>
 
        <name>Admin Portal</name>
        <description>Admin Portal</description>
index 5f5d221..495a7fd 100644 (file)
@@ -5,14 +5,14 @@
     <parent>
         <groupId>org.openecomp.sdnc.oam</groupId>
         <artifactId>installation</artifactId>
-        <version>1.0.0-SNAPSHOT</version>
+        <version>1.0.0</version>
     </parent>
 
     <modelVersion>4.0.0</modelVersion>
     <packaging>pom</packaging>
     <groupId>org.openecomp.sdnc.oam</groupId>
     <artifactId>installation-admportal</artifactId>
-    <version>1.0.0-SNAPSHOT</version>
+    <version>1.0.0</version>
 
     <name>Installation - admportal</name>
     <description>Creates admportal Docker container</description>
index 6df3769..4eaf158 100644 (file)
@@ -5,14 +5,14 @@
        <parent>
                <groupId>org.openecomp.sdnc.oam</groupId>
                <artifactId>installation</artifactId>
-               <version>1.0.0-SNAPSHOT</version>
+               <version>1.0.0</version>
        </parent>
 
        <modelVersion>4.0.0</modelVersion>
        <packaging>pom</packaging>
        <groupId>org.openecomp.sdnc.oam</groupId>
        <artifactId>installation-dgbuilder</artifactId>
-       <version>1.0.0-SNAPSHOT</version>
+       <version>1.0.0</version>
 
        <name>Installation - dgbuilder</name>
        <description>Creates docker container for dgbuilder</description>
index 20c1dba..c133695 100644 (file)
@@ -5,14 +5,14 @@
        <parent>
                <groupId>org.openecomp.sdnc.oam</groupId>
                <artifactId>sdnc-oam</artifactId>
-               <version>1.0.0-SNAPSHOT</version>
+               <version>1.0.0</version>
        </parent>
 
        <modelVersion>4.0.0</modelVersion>
        <packaging>pom</packaging>
        <groupId>org.openecomp.sdnc.oam</groupId>
        <artifactId>installation</artifactId>
-       <version>1.0.0-SNAPSHOT</version>
+       <version>1.0.0</version>
 
        <name>Installation</name>
        <description>Installs SDN-C on local file system</description>
index 50b8cbe..6db2fd5 100644 (file)
@@ -5,14 +5,14 @@
        <parent>
                <groupId>org.openecomp.sdnc.oam</groupId>
                <artifactId>installation</artifactId>
-               <version>1.0.0-SNAPSHOT</version>
+               <version>1.0.0</version>
        </parent>
 
        <modelVersion>4.0.0</modelVersion>
        <packaging>pom</packaging>
        <groupId>org.openecomp.sdnc.oam</groupId>
        <artifactId>installation-sdnc</artifactId>
-       <version>1.0.0-SNAPSHOT</version>
+       <version>1.0.0</version>
 
        <name>Installation - sdnc</name>
        <description>Creates SDN Controller Docker container</description>
diff --git a/installation/src/main/yaml/docker-compose.yml b/installation/src/main/yaml/docker-compose.yml
new file mode 100644 (file)
index 0000000..ac84b71
--- /dev/null
@@ -0,0 +1,92 @@
+version: '2'
+
+services:
+  db:
+    image: mysql/mysql-server:5.6
+    container_name: sdnc_db_container
+    ports:
+      - "3306"
+    environment:
+      - MYSQL_ROOT_PASSWORD=openECOMP1.0
+      - MYSQL_ROOT_HOST=%
+    logging:       
+      driver:   "json-file"
+      options:  
+        max-size: "30m"
+        max-file: "5"
+  
+      
+  sdnc:
+    image: ${ECOMP_DOCKER_HOST}:${ECOMP_DOCKER_PORT}/ecomp/sdnc-image:latest 
+    depends_on :
+      - db
+    container_name: sdnc_controller_container
+    entrypoint: ["/opt/openecomp/sdnc/bin/startODL.sh"]
+    ports:
+      - "8282:8181"
+    links:
+      - db:dbhost
+      - db:sdnctldb01
+      - db:sdnctldb02
+    environment:
+      - MYSQL_ROOT_PASSWORD=openECOMP1.0
+      - SDNC_CONFIG_DIR=/opt/openecomp/sdnc/data/properties
+    logging:       
+      driver:   "json-file"
+      options:  
+        max-size: "30m"
+        max-file: "5"
+  
+  
+  web:
+    image: ${ECOMP_DOCKER_HOST}:${ECOMP_DOCKER_PORT}/ecomp/admportal-sdnc-image:latest
+    depends_on:
+      - db
+    container_name: sdnc_portal_container
+    entrypoint: 
+       - "/bin/bash"
+       - "-c"
+       - "cd /opt/openecomp/sdnc/admportal/shell && ./start_portal.sh"
+    ports:
+      - "8843:8843"
+    links:
+      - db:dbhost
+      - db:sdnctldb01
+      - db:sdnctldb02
+      - sdnc:sdnhost
+    environment:
+      - MYSQL_ROOT_PASSWORD=openECOMP1.0
+      - SDNC_CONFIG_DIR=/opt/openecomp/sdnc/data/properties
+    logging:       
+      driver:   "json-file"
+      options:  
+        max-size: "30m"
+        max-file: "5"
+  
+  
+  dgbuilder:
+    image: ${ECOMP_DOCKER_HOST}:${ECOMP_DOCKER_PORT}/ecomp/dgbuilder-sdnc-image:latest
+    depends_on:
+      - db
+    container_name:  sdnc_dgbuilder_container
+    entrypoint:
+       - "/bin/bash"
+       - "-c"
+       - "cd /opt/openecomp/sdnc/dgbuilder/ && ./start sdnc1.0 && wait"
+    ports:
+      - "3000:3100"
+    links:
+      - db:dbhost
+      - db:sdnctldb01
+      - db:sdnctldb02
+      - sdnc:sdnhost
+    environment:
+      - MYSQL_ROOT_PASSWORD=openECOMP1.0
+      - SDNC_CONFIG_DIR=/opt/openecomp/sdnc/data/properties
+    logging:       
+      driver:   "json-file"
+      options:  
+        max-size: "30m"
+        max-file: "5"
+  
+  
index e823378..603ba26 100644 (file)
@@ -5,14 +5,14 @@
        <parent>
                <groupId>org.openecomp.sdnc.oam</groupId>
                <artifactId>installation</artifactId>
-               <version>1.0.0-SNAPSHOT</version>
+               <version>1.0.0</version>
        </parent>
 
        <modelVersion>4.0.0</modelVersion>
        <packaging>pom</packaging>
        <groupId>org.openecomp.sdnc.oam</groupId>
        <artifactId>installation-ubuntu</artifactId>
-       <version>1.0.0-SNAPSHOT</version>
+       <version>1.0.0</version>
 
        <name>Installation - ubuntu</name>
        <description>Creates base ubuntu Docker container</description>
index 0db8032..bfc340b 100644 (file)
@@ -5,14 +5,14 @@
        <parent>
                <groupId>org.openecomp.sdnc.oam</groupId>
                <artifactId>platform-logic</artifactId>
-               <version>1.0.0-SNAPSHOT</version>
+               <version>1.0.0</version>
        </parent>
 
        <modelVersion>4.0.0</modelVersion>
        <packaging>pom</packaging>
        <groupId>org.openecomp.sdnc.oam</groupId>
        <artifactId>platform-logic-asdcapi</artifactId>
-       <version>1.0.0-SNAPSHOT</version>
+       <version>1.0.0</version>
 
        <name>Platform Logic : ASDC-API</name>
        <description>Contains platform-level service logic for the ASDC-API</description>
index 6278dc5..4fb723a 100644 (file)
@@ -5,14 +5,14 @@
        <parent>
                <groupId>org.openecomp.sdnc.oam</groupId>
                <artifactId>platform-logic</artifactId>
-               <version>1.0.0-SNAPSHOT</version>
+               <version>1.0.0</version>
        </parent>
 
        <modelVersion>4.0.0</modelVersion>
        <packaging>pom</packaging>
        <groupId>org.openecomp.sdnc.oam</groupId>
        <artifactId>platform-logic-installer</artifactId>
-       <version>1.0.0-SNAPSHOT</version>
+       <version>1.0.0</version>
 
        <name>Platform Logic Installer</name>
        <description>Contains platform-level service logic installer</description>
index 00d88b0..c8479bb 100644 (file)
@@ -5,14 +5,14 @@
        <parent>
                <groupId>org.openecomp.sdnc.oam</groupId>
                <artifactId>sdnc-oam</artifactId>
-               <version>1.0.0-SNAPSHOT</version>
+               <version>1.0.0</version>
        </parent>
 
        <modelVersion>4.0.0</modelVersion>
        <packaging>pom</packaging>
        <groupId>org.openecomp.sdnc.oam</groupId>
        <artifactId>platform-logic</artifactId>
-       <version>1.0.0-SNAPSHOT</version>
+       <version>1.0.0</version>
 
        <name>Platform Logic </name>
        <description>Contains platform-level service logic</description>
index 18338ff..cd01597 100644 (file)
@@ -5,14 +5,14 @@
        <parent>
                <groupId>org.openecomp.sdnc.oam</groupId>
                <artifactId>platform-logic</artifactId>
-               <version>1.0.0-SNAPSHOT</version>
+               <version>1.0.0</version>
        </parent>
 
        <modelVersion>4.0.0</modelVersion>
        <packaging>pom</packaging>
        <groupId>org.openecomp.sdnc.oam</groupId>
        <artifactId>platform-logic-sliapi</artifactId>
-       <version>1.0.0-SNAPSHOT</version>
+       <version>1.0.0</version>
 
        <name>Platform Logic : SLI-API</name>
        <description>Contains platform-level service logic for the SLI-API</description>
index 47589e6..11a0b26 100644 (file)
@@ -5,14 +5,14 @@
        <parent>
                <groupId>org.openecomp.sdnc.oam</groupId>
                <artifactId>platform-logic</artifactId>
-               <version>1.0.0-SNAPSHOT</version>
+               <version>1.0.0</version>
        </parent>
 
        <modelVersion>4.0.0</modelVersion>
        <packaging>pom</packaging>
        <groupId>org.openecomp.sdnc.oam</groupId>
        <artifactId>platform-logic-vnfapi</artifactId>
-       <version>1.0.0-SNAPSHOT</version>
+       <version>1.0.0</version>
 
        <name>Platform Logic : VNF-API</name>
        <description>Contains platform-level service logic for the VNF-API</description>
diff --git a/pom.xml b/pom.xml
index 2e3c264..f0e3120 100755 (executable)
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
        <parent>
                <groupId>org.openecomp.sdnc.core</groupId>
                <artifactId>root</artifactId>
-               <version>1.0.0-SNAPSHOT</version>
+               <version>1.0.0</version>
        </parent>
 
        <modelVersion>4.0.0</modelVersion>
                                </executions>
                        </plugin>
                        -->
+                       <plugin>
+                               <groupId>org.sonatype.plugins</groupId>
+                               <artifactId>nexus-staging-maven-plugin</artifactId>
+                               <version>1.6.7</version>
+                               <extensions>true</extensions>
+                               <configuration>
+                                       <nexusUrl>https://nexus.openecomp.org</nexusUrl>
+                                       <stagingProfileId>176c31dfe190a</stagingProfileId>
+                                       <serverId>ecomp-staging</serverId>
+                               </configuration>
+                       </plugin>
                        <plugin>
                                <groupId>org.apache.maven.plugins</groupId>
                                <artifactId>maven-surefire-plugin</artifactId>
        <organization>
                <name>AT&amp;T</name>
        </organization>
-       <version>1.0.0-SNAPSHOT</version>
+       <version>1.0.0</version>
 
 
 </project>