rename typefiles to be consistent with nexus
[dcaegen2/platform/plugins.git] / mvn-phase-script.sh
1 #!/bin/bash
2
3 # ================================================================================
4 # Copyright (c) 2017-2020 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 set -ex
20
21
22 echo "running script: [$0] for module [$1] at stage [$2]"
23
24 MVN_PROJECT_MODULEID="$1"
25 MVN_PHASE="$2"
26
27 PROJECT_ROOT=$(dirname $0)
28
29 set -e
30 RELEASE_TAG=${MVN_RELEASE_TAG:-R7}
31 if [ "$RELEASE_TAG" != "R1" ]; then
32   RELEASE_TAGGED_DIR="${RELEASE_TAG}/"
33 else
34   RELEASE_TAGGED_DIR="releases"
35 fi
36
37 source "${PROJECT_ROOT}"/mvn-phase-lib.sh
38
39
40 # Customize the section below for each project
41 case $MVN_PHASE in
42 clean)
43   echo "==> clean phase script"
44   clean_templated_files
45   clean_tox_files
46   rm -rf ./venv-* ./*.wgn ./site
47   ;;
48 generate-sources)
49   echo "==> generate-sources phase script"
50   expand_templates
51   ;;
52 compile)
53   echo "==> compile phase script"
54   ;;
55 test)
56   echo "==> test phase script"
57   run_tox_test
58   ;;
59 package)
60   echo "==> package phase script"
61   build_archives_for_wagons
62   build_wagons
63   ;;
64 install)
65   echo "==> install phase script"
66   ;;
67 deploy)
68   echo "==> deploy phase script"
69   upload_wagons_and_type_yamls
70   upload_wagon_archives
71   ;;
72 *)
73   echo "==> unprocessed phase"
74   ;;
75 esac