From c652dd19ba33712692b25010513fc19daf020587 Mon Sep 17 00:00:00 2001 From: Russ Poetker Date: Tue, 23 Sep 2025 15:57:21 -0400 Subject: [PATCH] Update release version commands --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 770fd3f..bde3dfc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -71,8 +71,8 @@ jobs: - name: Set the release version, commit the change, and tag it run: | - mvn versions:update-parent -B -ntp -DparentVersion=$RELEASE - mvn versions:set -B -ntp -DnewVersion=$RELEASE + mvn versions:update-parent -DskipResolution=true -DparentVersion=$RELEASE + mvn versions:update-child-modules git commit -am "Update version to $RELEASE" git tag $RELEASE @@ -85,8 +85,8 @@ jobs: - name: Set the next dev version and commit the change run: | - mvn versions:update-parent -B -ntp -DallowSnapshots=true -DparentVersion=$NEXT - mvn versions:set -B -ntp -DallowSnapshots=true -DnewVersion=$NEXT + mvn versions:update-parent -DskipResolution=true -DallowSnapshots=true -DparentVersion=$NEXT + mvn versions:update-child-modules git commit -am "Update version to $NEXT" - name: Release dev Java modules