We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a5f5ed commit 55d5569Copy full SHA for 55d5569
1 file changed
script/build
@@ -64,15 +64,16 @@ mv $AOT_CACHE_FILE src/main/cljs/cljs/core.cljs.cache.aot.edn
64
65
# For Hudson server
66
if [ "$HUDSON" = "true" ]; then
67
- mvn -B --fail-at-end -Psonatype-oss-release $CLJS_SCRIPT_MVN_OPTS \
+ mvn -B -ntp --fail-at-end -Psonatype-oss-release $CLJS_SCRIPT_MVN_OPTS \
68
clean deploy nexus-staging:release
69
70
echo "Creating tag $TAG"
71
git tag -f "$TAG"
72
git push origin "$TAG"
73
else
74
echo "Skipping remote deployment and Git tag because we are not on Hudson."
75
- mvn $CLJS_SCRIPT_MVN_OPTS clean install
+ mvn -B -ntp -DskipNexusStagingDeployMojo=true --fail-at-end -Psonatype-oss-release $CLJS_SCRIPT_MVN_OPTS \
76
+ clean install
77
fi
78
79
rm -f src/main/cljs/cljs/core.aot.js
0 commit comments