954144490eec789af24268106ddb7d4ede83368e
[sdnc/oam.git] / installation / sdnc / src / main / scripts / installZips.sh
1 #!/bin/bash
2
3 ###
4 # ============LICENSE_START=======================================================
5 # openECOMP : SDN-C
6 # ================================================================================
7 # Copyright (C) 2017 AT&T Intellectual Property. All rights
8 #                                                       reserved.
9 # ================================================================================
10 # Licensed under the Apache License, Version 2.0 (the "License");
11 # you may not use this file except in compliance with the License.
12 # You may obtain a copy of the License at
13 #
14 #      http://www.apache.org/licenses/LICENSE-2.0
15 #
16 # Unless required by applicable law or agreed to in writing, software
17 # distributed under the License is distributed on an "AS IS" BASIS,
18 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 # See the License for the specific language governing permissions and
20 # limitations under the License.
21 # ============LICENSE_END=========================================================
22 ###
23
24 if [ -z "$SETTINGS_FILE" -a -z "$GLOBAL_SETTINGS_FILE" -a -s "$HOME"/.m2/settings.xml ]
25 then
26   DEFAULT_MAVEN_SETTINGS=${HOME}/.m2/settings.xml
27   SETTINGS_FILE=${SETTINGS_FILE:-${DEFAULT_MAVEN_SETTINGS}}
28   GLOBAL_SETTINGS_FILE=${GLOBAL_SETTINGS_FILE:-${DEFAULT_MAVEN_SETTINGS}}
29 fi
30
31 SDNC_HOME=${SDNC_HOME:-/opt/onap/sdnc}
32
33 targetDir=${1:-${SDNC_HOME}}
34 featureDir=${targetDir}/features
35
36
37 SDNC_NORTHBOUND_FEATURES=" \
38   vnfapi \
39   vnftools"
40
41
42
43 SDNC_NORTHBOUND_VERSION=${SDNC_NORTHBOUND_VERSION:-1.2.0}
44 SDNC_OAM_VERSION=${SDNC_OAM_VERSION:-1.2.0}
45
46 if [ ! -d ${targetDir} ]
47 then
48   mkdir -p ${targetDir}
49 fi
50
51 if [ ! -d ${featureDir} ]
52 then
53   mkdir -p ${featureDir}
54 fi
55
56 cwd=$(pwd)
57
58 mavenOpts=${2:-"-s ${SETTINGS_FILE} -gs ${GLOBAL_SETTINGS_FILE}"}
59 cd /tmp
60
61 echo "Installing SDN-C core version ${SDNC_CORE_VERSION}"
62 for feature in ${SDNC_CORE_FEATURES}
63 do
64  rm -f /tmp/${feature}-installer*.zip
65 mvn -U ${mavenOpts} org.apache.maven.plugins:maven-dependency-plugin:2.9:copy -Dartifact=org.onap.sdnc.core:${feature}-installer:${SDNC_CORE_VERSION}:zip -DoutputDirectory=/tmp -Dmaven.wagon.http.ssl.allowall=true -Dmaven.wagon.ssl.insecure=true
66  unzip -d ${featureDir} /tmp/${feature}-installer*zip
67 done
68
69 echo "Installing SDN-C adaptors version ${SDNC_ADAPTORS_VERSION}"
70 for feature in ${SDNC_ADAPTORS_FEATURES}
71 do
72  rm -f /tmp/${feature}-installer*.zip
73 mvn -U ${mavenOpts} org.apache.maven.plugins:maven-dependency-plugin:2.9:copy -Dartifact=org.onap.sdnc.adaptors:${feature}-installer:${SDNC_ADAPTORS_VERSION}:zip -DoutputDirectory=/tmp -Dmaven.wagon.http.ssl.allowall=true -Dmaven.wagon.ssl.insecure=true
74  unzip -d ${featureDir} /tmp/${feature}-installer*zip
75 done
76
77 echo "Installing SDN-C northbound version ${SDNC_NORTHBOUND_VERSION}"
78 for feature in ${SDNC_NORTHBOUND_FEATURES}
79 do
80  rm -f /tmp/${feature}-installer*.zip
81 mvn -U ${mavenOpts} org.apache.maven.plugins:maven-dependency-plugin:2.9:copy -Dartifact=org.onap.sdnc.northbound:${feature}-installer:${SDNC_NORTHBOUND_VERSION}:zip -DoutputDirectory=/tmp -Dmaven.wagon.http.ssl.allowall=true -Dmaven.wagon.ssl.insecure=true
82  unzip -d ${featureDir} /tmp/${feature}-installer*zip
83 done
84
85 echo "Installing SDN-C plugins version ${SDNC_PLUGINS_VERSION}"
86 for feature in ${SDNC_PLUGINS_FEATURES}
87 do
88  rm -f /tmp/${feature}-installer*.zip
89 mvn -U ${mavenOpts} org.apache.maven.plugins:maven-dependency-plugin:2.9:copy -Dartifact=org.onap.sdnc.plugins:${feature}-installer:${SDNC_PLUGINS_VERSION}:zip -DoutputDirectory=/tmp -Dmaven.wagon.http.ssl.allowall=true -Dmaven.wagon.ssl.insecure=true
90  unzip -d ${featureDir} /tmp/${feature}-installer*zip
91 done
92
93
94
95 echo "Installing platform-logic"
96 rm -f /tmp/platform-logic-installer*.zip
97 mvn -U ${mavenOpts} org.apache.maven.plugins:maven-dependency-plugin:2.9:copy -Dartifact=org.onap.sdnc.oam:platform-logic-installer:${SDNC_OAM_VERSION}:zip -DoutputDirectory=/tmp -Dmaven.wagon.http.ssl.allowall=true -Dmaven.wagon.ssl.insecure=true
98 unzip -d ${targetDir} /tmp/platform-logic-installer*.zip
99
100 find ${targetDir} -name '*.sh' -exec chmod +x '{}' \;
101
102 cd $cwd
103