Skip to content

Commit 151659f

Browse files
committed
Update release script
1 parent 7b762c1 commit 151659f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ The release happens in two phases:
101101
export BUILDQUALIFIER=$(date -u +v%Y%m%d-%H%M) && echo $BUILDQUALIFIER
102102

103103
# Pick the version of the new release and the next development version
104-
export VERSION=4.0.15
105-
export NEXT=4.0.16
104+
export VERSION=4.0.18
105+
export NEXT=4.0.19
106106

107107
echo Update the ReleaseNotes with the release date and version:
108108
echo
@@ -111,7 +111,7 @@ The release happens in two phases:
111111
echo
112112
echo "Press enter to continue..."
113113
read
114-
mvn -Dtycho.mode=maven org.eclipse.tycho:tycho-versions-plugin:set-version -DnewVersion=$VERSION.$BUILDQUALIFIER
114+
./mvnw -Dtycho.mode=maven org.eclipse.tycho:tycho-versions-plugin:set-version -DnewVersion=$VERSION.$BUILDQUALIFIER
115115
sed -i -e "s/$VERSION.qualifier/$VERSION.$BUILDQUALIFIER/" net.sourceforge.pmd.eclipse.p2updatesite/category.xml
116116
git commit -a -m "Prepare release pmd-eclipse-plugin $VERSION.$BUILDQUALIFIER"
117117
git tag $VERSION.$BUILDQUALIFIER
@@ -127,14 +127,14 @@ The release happens in two phases:
127127
read
128128

129129
echo "Updating version in master to next"
130-
mvn -Dtycho.mode=maven org.eclipse.tycho:tycho-versions-plugin:set-version -DnewVersion=$NEXT-SNAPSHOT
130+
./mvnw -Dtycho.mode=maven org.eclipse.tycho:tycho-versions-plugin:set-version -DnewVersion=$NEXT-SNAPSHOT
131131
sed -i -e "s/$VERSION.$BUILDQUALIFIER/$NEXT.qualifier/" net.sourceforge.pmd.eclipse.p2updatesite/category.xml
132132
git commit -a -m "Prepare next pmd-eclipse-plugin development version $NEXT-SNAPSHOT"
133133

134134
echo Checkout the release branch and build the plugin
135135
git checkout pmd-eclipse-plugin-rb-$VERSION
136136

137-
mvn clean verify
137+
./mvnw clean verify
138138

139139
echo
140140
echo "Please test now!!!"

0 commit comments

Comments
 (0)