Fixed bootstrap on windows. For some reason the plugin plugin doesn't build the first time so we need to build it twice...

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@344377 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Vincent Massol 2005-11-15 15:37:46 +00:00
parent 9b2e3708a4
commit 1d340a10f4
1 changed files with 6 additions and 0 deletions

View File

@ -120,6 +120,12 @@ echo
echo -----------------------------------------------------------------------
echo Rebuilding maven2 plugins
echo -----------------------------------------------------------------------
@REM Build plugin plugin first, it seems to choke on the version built by the bootstrap
cd maven-plugins\maven-plugin-plugin
call mvn --no-plugin-registry --batch-mode --fail-at-end -e %MAVEN_CMD_LINE_ARGS% clean:clean install
cd ..\..
cd maven-plugins
@REM update the release info to ensure these versions get used in the integration tests
call mvn --no-plugin-registry --batch-mode -DupdateReleaseInfo=true -e %MAVEN_CMD_LINE_ARGS% clean:clean install