From 76237e2dd8c96904f612bf22f64596c4a59fc8ec Mon Sep 17 00:00:00 2001 From: salaboy Date: Tue, 11 Mar 2025 13:55:51 +0000 Subject: [PATCH 1/3] fixing argument order for deploy profile option (#1250) Signed-off-by: salaboy --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9081d2336a..2e95d3e25e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -181,4 +181,4 @@ jobs: echo ${{ secrets.GPG_PRIVATE_KEY }} | base64 -d > private-key.gpg export GPG_TTY=$(tty) gpg --batch --import private-key.gpg - ./mvnw -V -B -Dgpg.skip=false -s settings.xml deploy -Pdeploy-profile + ./mvnw -V -B -Dgpg.skip=false -s settings.xml -Pdeploy-profile deploy From 4cbe9b7874d829548548654de32828238a1e7e12 Mon Sep 17 00:00:00 2001 From: Cassie Coyle Date: Wed, 12 Mar 2025 13:58:59 -0500 Subject: [PATCH 2/3] up build timeout (#1256) Signed-off-by: Cassandra Coyle Signed-off-by: salaboy --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2e95d3e25e..e588fdb269 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -146,7 +146,7 @@ jobs: publish: runs-on: ubuntu-latest needs: build - timeout-minutes: 10 + timeout-minutes: 30 env: JDK_VER: 17 OSSRH_USER_TOKEN: ${{ secrets.OSSRH_USER_TOKEN }} From 25d4ef71032826611143e5f3f8ef3282b26bab78 Mon Sep 17 00:00:00 2001 From: salaboy Date: Wed, 12 Mar 2025 13:40:13 +0000 Subject: [PATCH 3/3] Setting nexus URL (#1254) * adding nexus url Signed-off-by: salaboy * removing duplicate dep Signed-off-by: salaboy * adding missing version, which is not needed but to avoid warn Signed-off-by: salaboy --------- Signed-off-by: salaboy --- pom.xml | 22 +++++++++++----------- spring-boot-examples/consumer-app/pom.xml | 1 + 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/pom.xml b/pom.xml index bf727fe94d..503d26b8ca 100644 --- a/pom.xml +++ b/pom.xml @@ -162,6 +162,17 @@ maven-resources-plugin ${maven-resources-plugin.version} + + org.sonatype.plugins + nexus-staging-maven-plugin + ${nexus-staging-maven-plugin.version} + true + + ossrh + https://oss.sonatype.org/ + true + + @@ -199,17 +210,6 @@ - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - true - - ossrh - https://oss.sonatype.org/ - true - - org.apache.maven.plugins maven-checkstyle-plugin diff --git a/spring-boot-examples/consumer-app/pom.xml b/spring-boot-examples/consumer-app/pom.xml index 1439daa89a..621b812ca0 100644 --- a/spring-boot-examples/consumer-app/pom.xml +++ b/spring-boot-examples/consumer-app/pom.xml @@ -83,6 +83,7 @@ org.springframework.boot spring-boot-maven-plugin + ${springboot.version} org.apache.maven.plugins