mirror of https://github.com/apache/maven.git
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:
parent
9b2e3708a4
commit
1d340a10f4
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue