Merge "Setup ReadTheDocs"
authorDan Timoney <dtimoney@att.com>
Thu, 28 Sep 2017 11:41:12 +0000 (11:41 +0000)
committerGerrit Code Review <gerrit@onap.org>
Thu, 28 Sep 2017 11:41:12 +0000 (11:41 +0000)
odlsli/src/main/properties/dblib.properties
odlsli/src/main/scripts/installFeatures.sh
odlsli/src/main/scripts/installZips.sh
pom.xml
src/main/yaml/docker-compose.yml

index d6d9f34..9506ac8 100644 (file)
@@ -24,7 +24,7 @@ org.onap.ccsdk.sli.dbtype=jdbc
 
 org.onap.ccsdk.sli.jdbc.hosts=sdnctldb01
 org.onap.ccsdk.sli.jdbc.url=jdbc:mysql://dbhost:3306/sdnctl
-org.openecomp.sdnc.sli.jdbc.driver=org.mariadb.jdbc.Driver
+org.onap.ccsdk.sli.jdbc.driver=org.mariadb.jdbc.Driver
 org.onap.ccsdk.sli.jdbc.database=sdnctl
 org.onap.ccsdk.sli.jdbc.user=sdnctl
 org.onap.ccsdk.sli.jdbc.password=gamma
index 6695ebb..37532e7 100644 (file)
@@ -27,6 +27,7 @@ SDNC_HOME=${SDNC_HOME:-/opt/onap/sdnc}
 SDNC_FEATURE_DIR=${SDNC_FEATURE_DIR:-${SDNC_HOME}/features}
 
 SDNC_CORE_FEATURES=" \
+ slicore-utils \
  dblib \
  filters \
  sli \
index 8abf172..85e3380 100644 (file)
@@ -34,6 +34,7 @@ targetDir=${1:-${SDNC_HOME}}
 featureDir=${targetDir}/features
 
 SDNC_CORE_FEATURES=" \
+ utils \
  dblib \
  filters \
  sli \
@@ -54,12 +55,10 @@ SDNC_PLUGINS_FEATURES=" \
   properties-node \
   restapi-call-node"
 
-
-SDNC_CORE_VERSION=${SDNC_CORE_VERSION:-0.1.1}
+SDNC_CORE_VERSION=${SDNC_CORE_VERSION:-0.1.2}
 SDNC_ADAPTORS_VERSION=${SDNC_ADAPTORS_VERSION:-0.1.1}
 SDNC_NORTHBOUND_VERSION=${SDNC_NORTHBOUND_VERSION:-0.1.1}
 SDNC_PLUGINS_VERSION=${SDNC_PLUGINS_VERSION:-0.1.1}
-SDNC_OAM_VERSION=${SDNC_OAM_VERSION:-0.1.1}
 
 if [ ! -d ${targetDir} ]
 then
diff --git a/pom.xml b/pom.xml
index fce592f..215196b 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
     <parent>
         <groupId>org.onap.ccsdk.parent</groupId>
         <artifactId>odlparent-carbon-sr1</artifactId>
-        <version>0.0.1-SNAPSHOT</version>
+        <version>0.0.2-SNAPSHOT</version>
     </parent>
 
     <modelVersion>4.0.0</modelVersion>
         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
     </properties>
 
+    <build>
+        <plugins>
+           <plugin>
+                <groupId>org.sonatype.plugins</groupId>
+                <artifactId>nexus-staging-maven-plugin</artifactId>
+                <version>1.6.7</version>
+                <extensions>true</extensions>
+                <configuration>
+                    <nexusUrl>https://${onap.nexus.host}</nexusUrl>
+                    <stagingProfileId>${onap.nexus.staging.profile-id}</stagingProfileId>
+                    <serverId>${onap.nexus.staging.server-id}</serverId>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
     <modules>
         <module>platform-logic</module>
         <module>ubuntu</module>
index 352057d..f65a510 100644 (file)
@@ -38,7 +38,7 @@ services:
     container_name: ccsdk_odlsli_container
     entrypoint: ["/opt/onap/sdnc/bin/startODL.sh"]
     ports:
-      - "8282:8181"
+      - "8383:8181"
     links:
       - db:dbhost
       - db:sdnctldb01