From f8e9980af623ad7388467fbc0d6b1c9a5786154e Mon Sep 17 00:00:00 2001 From: Corneil du Plessis Date: Tue, 1 Nov 2022 17:17:11 +0200 Subject: [PATCH] [GitHub Actions] Update build-app.sh --- build-app.sh | 6 +++--- build-core.sh | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/build-app.sh b/build-app.sh index 7711c823..3497d85c 100755 --- a/build-app.sh +++ b/build-app.sh @@ -63,10 +63,10 @@ pushd "$PROJECT_FOLDER" > /dev/null rm -rf apps if [ -d "src/main/java" ]; then echo "Deploying:$APP_FOLDER" - $PROJECT_FOLDER/mvnw $MAVEN_OPT -s $SCDIR/.settings.xml clean $MAVEN_GOAL -U -Pintegration + $PROJECT_FOLDER/mvnw $MAVEN_OPT -s $SCDIR/.settings.xml clean $MAVEN_GOAL -Pintegration else echo "Packaging:$APP_FOLDER" - $PROJECT_FOLDER/mvnw $MAVEN_OPT -s $SCDIR/.settings.xml clean install -U -Pintegration + $PROJECT_FOLDER/mvnw $MAVEN_OPT -s $SCDIR/.settings.xml clean install -Pintegration fi if [ ! -d apps ]; then echo "Cannot find $APP_FOLDER/apps" @@ -81,7 +81,7 @@ pushd "$PROJECT_FOLDER" > /dev/null for app in $APPS; do pushd "$app" > /dev/null echo "Building:$APP_FOLDER/apps/$app" - ./mvnw $MAVEN_OPT -s $SCDIR/.settings.xml install deploy -U -Pintegration + ./mvnw $MAVEN_OPT -s $SCDIR/.settings.xml install deploy -Pintegration for v in $JDKS; do echo "Pack:$app:$VERSION-jdk$v" pack build \ diff --git a/build-core.sh b/build-core.sh index f65b67c1..801f4a64 100755 --- a/build-core.sh +++ b/build-core.sh @@ -29,6 +29,6 @@ else MAVEN_GOAL="install deploy" fi # -T 2C -./mvnw $MAVEN_OPT -s ./.settings.xml $MAVEN_GOAL -U -T 1C -f stream-applications-build -./mvnw $MAVEN_OPT -s ./.settings.xml $MAVEN_GOAL -U -T 1C -f functions -./mvnw $MAVEN_OPT -s ./.settings.xml $MAVEN_GOAL -U -T 1C -f applications/stream-applications-core +./mvnw $MAVEN_OPT -s ./.settings.xml $MAVEN_GOAL -T 1C -f stream-applications-build +./mvnw $MAVEN_OPT -s ./.settings.xml $MAVEN_GOAL -T 1C -f functions +./mvnw $MAVEN_OPT -s ./.settings.xml $MAVEN_GOAL -T 1C -f applications/stream-applications-core