Skip to content

Commit

Permalink
Updated the release script.
Browse files Browse the repository at this point in the history
  • Loading branch information
highsource committed Jun 6, 2018
1 parent f0c9770 commit b3826f2
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions qrelease.bat
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@
@REM

setlocal
echo Setting JAVA_HOME to %JAVA7_HOME%.
set JAVA_HOME=%JAVA7_HOME%
echo Setting JAVA_HOME to %JAVA9_HOME%.
set JAVA_HOME=%JAVA9_HOME%

echo Performing a full clean build.
rem pause
call mvn clean install -DperformRelease -Pall
call mvn clean install -Pall,sonatype-oss-release -DperformRelease
echo Full clean build completed.
rem pause

Expand All @@ -48,7 +48,7 @@ rem pause

echo Performing a full clean build.
rem pause
call mvn clean install -Pall -DperformRelease
call mvn clean install -Pall,sonatype-oss-release -DperformRelease
echo Full clean build completed.
rem pause

Expand All @@ -73,7 +73,7 @@ rem pause

echo Performing full clean deploy.
rem pause
call mvn -DperformRelease -Psonatype-oss-release,all clean deploy
call mvn -DperformRelease -Pall,sonatype-oss-release clean deploy
echo Full clean deploy done.
rem pause

Expand All @@ -88,11 +88,10 @@ rem pause

echo Performing a full clean build.
rem pause
call mvn clean install -DperformRelease -Pall
call mvn clean install -DperformRelease -Pall,sonatype-oss-release
echo Full clean build completed.
rem pause


echo Checking in version %2.
rem pause
git commit -a -m "Version %2"
Expand Down

0 comments on commit b3826f2

Please sign in to comment.