Skip to content

Commit

Permalink
Use Maven Wrapper in release.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
ebaron authored Nov 21, 2023
1 parent 7c159b1 commit 11b6d6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ set -euo pipefail
IFS=$'\n\t'

echo "📦 Staging artifacts..."
mvn --batch-mode --no-transfer-progress -Ppublication -DskipTests=true -Dskip.spotless=true
./mvnw --batch-mode --no-transfer-progress -Ppublication -DskipTests=true -Dskip.spotless=true

echo "🚀 Releasing..."
mvn --batch-mode --no-transfer-progress -Prelease jreleaser:full-release
./mvnw --batch-mode --no-transfer-progress -Prelease jreleaser:full-release

echo "🎉 Done!"

0 comments on commit 11b6d6a

Please sign in to comment.