aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsubhash kumar singh <subhash.kumar.singh@huawei.com>2018-11-21 09:45:02 +0000
committerGerrit Code Review <gerrit@onap.org>2018-11-21 09:45:02 +0000
commitb3cb4f477087b5ee8b8af70a32ef4c0c8def82f1 (patch)
tree222ed84244b741456943fa17133019447af08229
parent15f2a9be202c8c39be6bf0e7a47eded6466a494f (diff)
parente30b991c47e70c02cd84b8a8d81376d23cf87759 (diff)
Merge changes Ideed113a,Ifa598ca7
* changes: Make casablanca as default product in CLI Add SDC CLI casablanca support
-rw-r--r--deployment/docker/src/main/docker/Dockerfile2
-rw-r--r--products/onap-casablanca/features/pom.xml1
-rw-r--r--products/onap-casablanca/features/sdc/pom.xml39
3 files changed, 41 insertions, 1 deletions
diff --git a/deployment/docker/src/main/docker/Dockerfile b/deployment/docker/src/main/docker/Dockerfile
index 0fc2a156..22415d9b 100644
--- a/deployment/docker/src/main/docker/Dockerfile
+++ b/deployment/docker/src/main/docker/Dockerfile
@@ -18,7 +18,7 @@ ENV OPEN_CLI_HOME=/opt/oclip \
OPEN_CLI_DEBUG=false \
OPEN_CLI_DEBUG_PORT=5005 \
OPEN_CLI_MODE=shell \
- OPEN_CLI_PRODUCT_IN_USE=onap-beijing \
+ OPEN_CLI_PRODUCT_IN_USE=onap-casablanca \
GOTTY_TITLE_FORMAT="{{ .command }}" \
OCLIP_GRPC_SERVER="http://oclip_ocs_grpc:50051"
diff --git a/products/onap-casablanca/features/pom.xml b/products/onap-casablanca/features/pom.xml
index 3b95b3fb..65ce3492 100644
--- a/products/onap-casablanca/features/pom.xml
+++ b/products/onap-casablanca/features/pom.xml
@@ -35,6 +35,7 @@
<module>aai</module>
<module>msb</module>
<module>vnfsdk</module>
+ <module>sdc</module>
</modules>
<build>
diff --git a/products/onap-casablanca/features/sdc/pom.xml b/products/onap-casablanca/features/sdc/pom.xml
new file mode 100644
index 00000000..39a4823a
--- /dev/null
+++ b/products/onap-casablanca/features/sdc/pom.xml
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<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>
+
+ <parent>
+ <groupId>org.onap.cli</groupId>
+ <artifactId>cli-products-onap-casablanca-features</artifactId>
+ <version>2.0.4</version>
+ </parent>
+
+ <artifactId>cli-products-onap-casablanca-features-sdc</artifactId>
+ <name>cli/products/onap-casablanca/features/sdc</name>
+ <packaging>jar</packaging>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </build>
+</project>