Cleanup project's name in Sonar
[dcaegen2/platform/cli.git] / mvn-phase-script.sh
1 #!/bin/bash
2
3 # ================================================================================
4 # Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
5 # ================================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 # ============LICENSE_END=========================================================
18 #
19 # ECOMP is a trademark and service mark of AT&T Intellectual Property.
20
21
22 echo "running script: [$0] for module [$1] at stage [$2]"
23
24 echo "=> Prepare environment "
25 #env
26
27 TIMESTAMP=$(date +%C%y%m%dT%H%M%S) 
28 export BUILD_NUMBER="${TIMESTAMP}"
29
30 # expected environment variables 
31 if [ -z "${MVN_NEXUSPROXY}" ]; then
32     echo "MVN_NEXUSPROXY environment variable not set.  Cannot proceed"
33     exit
34 fi
35 MVN_NEXUSPROXY_HOST=$(echo "$MVN_NEXUSPROXY" |cut -f3 -d'/' | cut -f1 -d':')
36 echo "=> Nexu Proxy at $MVN_NEXUSPROXY_HOST, $MVN_NEXUSPROXY"
37
38 # use the version text detect which phase we are in in LF CICD process: verify, merge, or (daily) release
39
40 # mvn phase in life cycle 
41 MVN_PHASE="$2"
42
43 case $MVN_PHASE in
44 clean)
45   echo "==> clean phase script"
46   ;;
47 generate-sources)
48   echo "==> generate-sources phase script"
49   ;;
50 compile)
51   echo "==> compile phase script"
52   ;;
53 test)
54   echo "==> test phase script"
55   ;;
56 package)
57   echo "==> package phase script"
58   ;;
59 install)
60   echo "==> install phase script"
61   ;;
62 deploy)
63   echo "==> deploy phase script"
64   ;;
65 *)
66   echo "==> unprocessed phase"
67   ;;
68 esac
69