Skip to content

Commit 67b3bcb

Browse files
committed
Remove special Spring Boot 1.x handling from GitHub CI build script (#419)
1 parent 593ae0d commit 67b3bcb

File tree

1 file changed

+8
-24
lines changed

1 file changed

+8
-24
lines changed

gha_build.sh

Lines changed: 8 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -85,27 +85,11 @@ function sample {
8585
# set up the master pom otherwise we won't be able to find new dependencies
8686
cd ${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+
;;

0 commit comments

Comments
 (0)