From d81c00bb7aa53462a728657a603e2e0a6934a6a1 Mon Sep 17 00:00:00 2001 From: Ryan Baxter Date: Mon, 2 Jun 2025 09:41:09 -0400 Subject: [PATCH] Passing system properties when using releaser --- config/build.sh | 3 ++- config/releaser.yml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/config/build.sh b/config/build.sh index aeb541a7..5fb65c33 100755 --- a/config/build.sh +++ b/config/build.sh @@ -3,4 +3,5 @@ ./src/test/bash/install_vault.sh ./src/test/bash/create_certificates.sh ./src/test/bash/local_run_vault.sh & -./mvnw clean install -Pdocs && pkill -f "vault server" +./mvnw -s .settings.xml clean install -Pdocs ${@} +pkill -f "vault server" diff --git a/config/releaser.yml b/config/releaser.yml index 7a1b4c30..537a7718 100644 --- a/config/releaser.yml +++ b/config/releaser.yml @@ -1,3 +1,3 @@ releaser: maven: - buildCommand: ./config/build.sh + buildCommand: ./config/build.sh {{systemProps}}