Skip to content

Commit

Permalink
Add a script to update Quarkus version
Browse files Browse the repository at this point in the history
  • Loading branch information
gsmet committed Dec 4, 2023
1 parent 3ce5495 commit a4f5337
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions update-quarkus-version.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#! /bin/bash

if [ $# -eq 0 ]; then
echo "Release version required"
exit 1
fi
VERSION=$1

sed -ri "s@ <quarkus\.version>[^<]+</quarkus\.version>@ <quarkus.version>${VERSION}</quarkus.version>@g" pom.xml
./mvnw -Dsync

0 comments on commit a4f5337

Please sign in to comment.