File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,8 @@ rm -f resources/brepl_client.js
15
15
16
16
POM_TEMPLATE=" pom.template.xml"
17
17
POM_FILE=" pom.xml"
18
- CLJS_SCRIPT_MVN_OPTS=${CLJS_SCRIPT_MVN_OPTS:- " " }
18
+
19
+ CLJS_SCRIPT_MVN_OPTS=(${CLJS_SCRIPT_MVN_OPTS:- } " -DargLine=--add-opens java.base/java.util=ALL-UNNAMED" )
19
20
20
21
# The command `git describe --match v0.0` will return a string like
21
22
#
@@ -64,15 +65,15 @@ mv $AOT_CACHE_FILE src/main/cljs/cljs/core.cljs.cache.aot.edn
64
65
65
66
# For Hudson server
66
67
if [ " $HUDSON " = " true" ]; then
67
- mvn -B -ntp --fail-at-end -Psonatype-oss-release $ CLJS_SCRIPT_MVN_OPTS \
68
+ mvn -B -ntp --fail-at-end -Psonatype-oss-release " ${ CLJS_SCRIPT_MVN_OPTS[@]} " \
68
69
clean deploy nexus-staging:release
69
70
70
71
echo " Creating tag $TAG "
71
72
git tag -f " $TAG "
72
73
git push origin " $TAG "
73
74
else
74
75
echo " Skipping remote deployment and Git tag because we are not on Hudson."
75
- mvn -B -ntp $ CLJS_SCRIPT_MVN_OPTS clean install
76
+ mvn -B -ntp " ${ CLJS_SCRIPT_MVN_OPTS[@]} " clean install
76
77
fi
77
78
78
79
rm -f src/main/cljs/cljs/core.aot.js
You can’t perform that action at this time.
0 commit comments