File tree Expand file tree Collapse file tree 1 file changed +8
-24
lines changed Expand file tree Collapse file tree 1 file changed +8
-24
lines changed Original file line number Diff line number Diff line change @@ -85,27 +85,11 @@ function sample {
8585# set up the master pom otherwise we won't be able to find new dependencies
8686cd ${WORKING_DIR} / && mvn -q --non-recursive clean install
8787
88- case $1 in
89- # special case for spring since we include both spring and springboot 1.x in one package
90- spring)
91- install ${FRAMEWORK} ${EXTRA_PARAMS}
92- if [[ " $RUN_ARCHETYPE " = true ]] ; then
93- archetype ${FRAMEWORK}
94- archetype springboot
95- fi
96- if [[ " $RUN_SAMPLES " = true ]] ; then
97- sample ${FRAMEWORK}
98- sample springboot
99- fi
100- break
101- ;;
102- * )
103- install ${FRAMEWORK} ${EXTRA_PARAMS}
104- if [[ " $RUN_ARCHETYPE " = true ]] ; then
105- archetype ${FRAMEWORK}
106- fi
107- if [[ " $RUN_SAMPLES " = true ]] ; then
108- sample ${FRAMEWORK}
109- fi
110- ;;
111- esac
88+ install ${FRAMEWORK} ${EXTRA_PARAMS}
89+ if [[ " $RUN_ARCHETYPE " = true ]] ; then
90+ archetype ${FRAMEWORK}
91+ fi
92+ if [[ " $RUN_SAMPLES " = true ]] ; then
93+ sample ${FRAMEWORK}
94+ fi
95+ ;;
You can’t perform that action at this time.
0 commit comments