summaryrefslogtreecommitdiffstats
path: root/mvn-phase-script.sh
diff options
context:
space:
mode:
authorTony Hansen <tony@att.com>2017-09-29 02:03:39 +0000
committerTony Hansen <tony@att.com>2017-09-29 02:03:53 +0000
commit16a1fcbc814ec20e59cbe95cb506bca29f104208 (patch)
treefaef0c5a6b382a22943f35774f8469f75d0e2b88 /mvn-phase-script.sh
parent8cdeeeb9a2e8b51f9897173dc26d672e55b00304 (diff)
remove check-blueprint-vs-input, repackage
check-blueprint-vs-input was moved to blueprints module repackage was moved to ccsdk/pgaas module Change-Id: If9d04d4ee1c0e5a3a2b837fc253c00dee226a2ac Signed-off-by: Tony Hansen <tony@att.com> Issue-ID: DCAEGEN2-49
Diffstat (limited to 'mvn-phase-script.sh')
-rwxr-xr-xmvn-phase-script.sh30
1 files changed, 0 insertions, 30 deletions
diff --git a/mvn-phase-script.sh b/mvn-phase-script.sh
index 091abb6..de55ebc 100755
--- a/mvn-phase-script.sh
+++ b/mvn-phase-script.sh
@@ -56,9 +56,6 @@ case $MVN_PHASE in
clean)
echo "==> clean phase script"
case $MVN_PROJECT_MODULEID in
- check-blueprint-vs-input | repackage)
- if [ -f makefile -o -f Makefile ];then make clean; else :; fi
- ;;
*)
clean_templated_files
clean_tox_files
@@ -69,9 +66,6 @@ clean)
generate-sources)
echo "==> generate-sources phase script"
case $MVN_PROJECT_MODULEID in
- check-blueprint-vs-input | repackage)
- if [ -f makefile -o -f Makefile ];then make generate-sources; else :; fi
- ;;
*)
expand_templates
;;
@@ -80,9 +74,6 @@ generate-sources)
compile)
echo "==> compile phase script"
case $MVN_PROJECT_MODULEID in
- check-blueprint-vs-input | repackage)
- if [ -f makefile -o -f Makefile ];then make compile; else :; fi
- ;;
*)
;;
esac
@@ -90,9 +81,6 @@ compile)
test)
echo "==> test phase script"
case $MVN_PROJECT_MODULEID in
- check-blueprint-vs-input | repackage)
- if [ -f makefile -o -f Makefile ];then make test; else :; fi
- ;;
*)
set +e
run_tox_test
@@ -103,9 +91,6 @@ test)
package)
echo "==> package phase script"
case $MVN_PROJECT_MODULEID in
- check-blueprint-vs-input | repackage)
- if [ -f makefile -o -f Makefile ];then make package; else :; fi
- ;;
*)
;;
esac
@@ -113,9 +98,6 @@ package)
install)
echo "==> install phase script"
case $MVN_PROJECT_MODULEID in
- check-blueprint-vs-input | repackage)
- if [ -f makefile -o -f Makefile ];then make install; else :; fi
- ;;
*)
;;
esac
@@ -123,18 +105,6 @@ install)
deploy)
echo "==> deploy phase script"
case $MVN_PROJECT_MODULEID in
- check-blueprint-vs-input | repackage)
- if [ -f makefile -o -f Makefile ];then make deploy
- else
- # Upload all files (listed as additional deployment arguments) to Nexus
- # additional
- for artifact
- do
- upload_raw_file $artifact
- done
- set +e +x
- fi
- ;;
*)
# uncomment after we figure out how to use pypi. this command expects that the credentials are passed in
# settings.xml, and the URL and serverid are passed in from either oparent or dcaegen2's root pom