From c203856040d091fe44968833df97b3ddd20a59ed Mon Sep 17 00:00:00 2001 From: Zdenek Jonas Date: Tue, 19 Mar 2024 16:55:08 +0100 Subject: [PATCH] fix scripts --- .github/workflows/maven_deploy_snapshot.yml | 2 ++ .github/workflows/maven_deploy_snapshot_dev.yml | 2 ++ .github/workflows/maven_release.yml | 6 ++++++ 3 files changed, 10 insertions(+) diff --git a/.github/workflows/maven_deploy_snapshot.yml b/.github/workflows/maven_deploy_snapshot.yml index 5abcc8b8..38a442a5 100644 --- a/.github/workflows/maven_deploy_snapshot.yml +++ b/.github/workflows/maven_deploy_snapshot.yml @@ -52,12 +52,14 @@ jobs: - name: Build with java 17 run: | mvn -pl integrations/spring-boot3 clean install -am -B + mvn -pl integrations/spring-boot3-console clean install -am -B mvn -P production -pl storage/rest/client-app clean install -am -B mvn -P production -pl storage/rest/client-app-standalone-assembly clean install -am -B mvn -P production -pl storage/rest/service-springboot clean install -am -B - name: Deploy module build with java 17 run: | mvn -Pdeploy -pl integrations/spring-boot3 deploy + mvn -Pdeploy -pl integrations/spring-boot3-console deploy mvn -Pdeploy -Pproduction -pl storage/rest/client-app deploy mvn -Pdeploy -Pproduction -pl storage/rest/client-app-standalone-assembly deploy mvn -Pdeploy -Pproduction -pl storage/rest/service-springboot deploy diff --git a/.github/workflows/maven_deploy_snapshot_dev.yml b/.github/workflows/maven_deploy_snapshot_dev.yml index c9175da0..98562f02 100644 --- a/.github/workflows/maven_deploy_snapshot_dev.yml +++ b/.github/workflows/maven_deploy_snapshot_dev.yml @@ -96,12 +96,14 @@ jobs: - name: Make a snapshot java 17 run: | mvn -pl integrations/spring-boot3 clean install -am -B + mvn -pl integrations/spring-boot3-console clean install -am -B mvn -P production -pl storage/rest/client-app clean install -am -B mvn -P production -pl storage/rest/client-app-standalone-assembly clean install -am -B mvn -P production -pl storage/rest/service-springboot clean install -am -B - name: Deploy module build with java 17 run: | mvn -Pdeploy -pl integrations/spring-boot3 deploy + mvn -Pdeploy -pl integrations/spring-boot3-console deploy mvn -Pdeploy -Pproduction -pl storage/rest/client-app deploy mvn -Pdeploy -Pproduction -pl storage/rest/client-app-standalone-assembly deploy mvn -Pdeploy -Pproduction -pl storage/rest/service-springboot deploy diff --git a/.github/workflows/maven_release.yml b/.github/workflows/maven_release.yml index e741191b..341c6e6b 100644 --- a/.github/workflows/maven_release.yml +++ b/.github/workflows/maven_release.yml @@ -50,11 +50,17 @@ jobs: - name: Build with java 17 run: | mvn -pl integrations/spring-boot3 clean install -am -B + mvn -pl integrations/spring-boot3-console clean install -am -B mvn -P production -pl storage/rest/client-app clean install -am -B + mvn -P production -pl storage/rest/client-app-standalone-assembly clean install -am -B + mvn -P production -pl storage/rest/service-springboot clean install -am -B - name: Deploy module build with java 17 run: | mvn -Pdeploy -pl integrations/spring-boot3 deploy + mvn -Pdeploy -pl integrations/spring-boot3-console deploy mvn -Pdeploy -Pproduction -pl storage/rest/client-app deploy + mvn -Pdeploy -Pproduction -pl storage/rest/client-app-standalone-assembly deploy + mvn -Pdeploy -Pproduction -pl storage/rest/service-springboot deploy env: MAVEN_USERNAME: ${{ secrets.ORG_OSSRH_USERNAME }} MAVEN_PASSWORD: ${{ secrets.ORG_OSSRH_PASSWORD }}