You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@forrest.apache.org by David Crossley <cr...@apache.org> on 2005/06/10 08:22:34 UTC

Re: svn commit: r189864 - in /forrest/trunk/main: forrest.build.xml fresh-site/forrest.properties targets/plugins.xml var/pluginlist2fetch.xsl

Ross, this commit is not right. The property forrest.version is used
at various places throughout the build. It needs to be "0.7-dev".
During our etc/RELEASE_PROCESS.txt we tweak that to be "0.7", then
tweak again after release to finally be "0.8-dev".

Perhaps the plugin build system needs an additional property.

--David

> Author: rgardler
> Date: Thu Jun  9 17:08:55 2005
> New Revision: 189864
> 
> URL: http://svn.apache.org/viewcvs?rev=189864&view=rev
> Log:
> Add ability to specify a versioned plugin in forrest.properties. If the requested version is not available or none is specified then an unversioned plugin will be used, this version will be the latest published bersion and may be an in-development version.
> 
> Modified:
>     forrest/trunk/main/forrest.build.xml
>     forrest/trunk/main/fresh-site/forrest.properties
>     forrest/trunk/main/targets/plugins.xml
>     forrest/trunk/main/var/pluginlist2fetch.xsl
> 
> Modified: forrest/trunk/main/forrest.build.xml
> URL: http://svn.apache.org/viewcvs/forrest/trunk/main/forrest.build.xml?rev=189864&r1=189863&r2=189864&view=diff
> ==============================================================================
> --- forrest/trunk/main/forrest.build.xml (original)
> +++ forrest/trunk/main/forrest.build.xml Thu Jun  9 17:08:55 2005
> @@ -29,7 +29,7 @@
>  
>    <property environment="env" />
>    <property name="forrest.home"               location="${env.FORREST_HOME}" />
> -  <property name="forrest.version"            value="0.7-dev"/>
> +  <property name="forrest.version"            value="0.7"/>
>  
>    <property name="forrest.lib-dir"            location="${forrest.home}/lib"/>
>    <property name="forrest.core.lib-dir"       location="${forrest.lib-dir}/core"/>

[ snip ]

Re: svn commit: r189864 - in /forrest/trunk/main: forrest.build.xml fresh-site/forrest.properties targets/plugins.xml var/pluginlist2fetch.xsl

Posted by Ross Gardler <rg...@apache.org>.
David Crossley wrote:
> Ross, this commit is not right. The property forrest.version is used
> at various places throughout the build. It needs to be "0.7-dev".
> During our etc/RELEASE_PROCESS.txt we tweak that to be "0.7", then
> tweak again after release to finally be "0.8-dev".

Yes, it was an accidental commit. I changed it locally to test the 
versioned plugin system and it was late when I committed the changes, 
couldn't be bothered waiting for the commit messages to come back so I 
didn't spot it till this morning. Sorry for the confusion.

(fixed now)

Ross