You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by Emmanuel Venisse <em...@venisse.net> on 2005/11/15 17:30:56 UTC

Re: svn commit: r344377 - /maven/components/trunk/m2-bootstrap-all.bat

It will be better to find and fix the pb in maven instead of this bootstrap script

Emmanuel

vmassol@apache.org a écrit :
> Author: vmassol
> Date: Tue Nov 15 07:37:46 2005
> New Revision: 344377
> 
> URL: http://svn.apache.org/viewcvs?rev=344377&view=rev
> Log:
> Fixed bootstrap on windows. For some reason the plugin plugin doesn't build the first time so we need to build it twice...
> 
> Modified:
>     maven/components/trunk/m2-bootstrap-all.bat
> 
> Modified: maven/components/trunk/m2-bootstrap-all.bat
> URL: http://svn.apache.org/viewcvs/maven/components/trunk/m2-bootstrap-all.bat?rev=344377&r1=344376&r2=344377&view=diff
> ==============================================================================
> --- maven/components/trunk/m2-bootstrap-all.bat (original)
> +++ maven/components/trunk/m2-bootstrap-all.bat Tue Nov 15 07:37:46 2005
> @@ -120,6 +120,12 @@
>  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
> 
> 
> 
> 
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


Re: svn commit: r344377 - /maven/components/trunk/m2-bootstrap-all.bat

Posted by Brett Porter <br...@apache.org>.
It need sto be fixed but is a low priority as it only affects biuld the 
plugin plugin after having built the plugin plugin with the bootstrap 
which is very specific to our environment.

- Brett

Vincent Massol wrote:
> 
>>-----Original Message-----
>>From: Emmanuel Venisse [mailto:emmanuel@venisse.net]
>>Sent: mardi 15 novembre 2005 17:31
>>To: dev@maven.apache.org
>>Subject: Re: svn commit: r344377 - /maven/components/trunk/m2-bootstrap-
>>all.bat
>>
>>It will be better to find and fix the pb in maven instead of this
>>bootstrap script
> 
> 
> Obviously... Nobody is going to disagree with you on this... :-)
> 
> BTW this is also true for the unix version.
> 
> Do you have a patch? Right now this allows building on windows. This has
> been going on for weeks/months like this with a broken bootstrap. So,
> there's little change it's going to be fixed anytime soon if nobody works on
> it. At least now m2 can be built.
> 
> Thanks
> -Vincent
> 
> 
>>vmassol@apache.org a écrit :
>>
>>>Author: vmassol
>>>Date: Tue Nov 15 07:37:46 2005
>>>New Revision: 344377
>>>
>>>URL: http://svn.apache.org/viewcvs?rev=344377&view=rev
>>>Log:
>>>Fixed bootstrap on windows. For some reason the plugin plugin doesn't
>>
>>build the first time so we need to build it twice...
>>
>>>Modified:
>>>    maven/components/trunk/m2-bootstrap-all.bat
>>>
>>>Modified: maven/components/trunk/m2-bootstrap-all.bat
>>>URL: http://svn.apache.org/viewcvs/maven/components/trunk/m2-bootstrap-
>>
>>all.bat?rev=344377&r1=344376&r2=344377&view=diff
>>
>>==========================================================================
>>====
>>
>>>--- maven/components/trunk/m2-bootstrap-all.bat (original)
>>>+++ maven/components/trunk/m2-bootstrap-all.bat Tue Nov 15 07:37:46 2005
>>>@@ -120,6 +120,12 @@
>>> 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
>>
>>>
>>>
>>>
>>>
>>
>>---------------------------------------------------------------------
>>To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
>>For additional commands, e-mail: dev-help@maven.apache.org
> 
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> For additional commands, e-mail: dev-help@maven.apache.org
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


RE: svn commit: r344377 - /maven/components/trunk/m2-bootstrap-all.bat

Posted by Vincent Massol <vm...@pivolis.com>.

> -----Original Message-----
> From: Emmanuel Venisse [mailto:emmanuel@venisse.net]
> Sent: mardi 15 novembre 2005 17:31
> To: dev@maven.apache.org
> Subject: Re: svn commit: r344377 - /maven/components/trunk/m2-bootstrap-
> all.bat
> 
> It will be better to find and fix the pb in maven instead of this
> bootstrap script

Obviously... Nobody is going to disagree with you on this... :-)

BTW this is also true for the unix version.

Do you have a patch? Right now this allows building on windows. This has
been going on for weeks/months like this with a broken bootstrap. So,
there's little change it's going to be fixed anytime soon if nobody works on
it. At least now m2 can be built.

Thanks
-Vincent

> vmassol@apache.org a écrit :
> > Author: vmassol
> > Date: Tue Nov 15 07:37:46 2005
> > New Revision: 344377
> >
> > URL: http://svn.apache.org/viewcvs?rev=344377&view=rev
> > Log:
> > Fixed bootstrap on windows. For some reason the plugin plugin doesn't
> build the first time so we need to build it twice...
> >
> > Modified:
> >     maven/components/trunk/m2-bootstrap-all.bat
> >
> > Modified: maven/components/trunk/m2-bootstrap-all.bat
> > URL: http://svn.apache.org/viewcvs/maven/components/trunk/m2-bootstrap-
> all.bat?rev=344377&r1=344376&r2=344377&view=diff
> >
> ==========================================================================
> ====
> > --- maven/components/trunk/m2-bootstrap-all.bat (original)
> > +++ maven/components/trunk/m2-bootstrap-all.bat Tue Nov 15 07:37:46 2005
> > @@ -120,6 +120,12 @@
> >  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
> >
> >
> >
> >
> >
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> For additional commands, e-mail: dev-help@maven.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org