Author: schof
Date: Tue May 3 16:03:01 2005
New Revision: 168015
URL: http://svn.apache.org/viewcvs?rev=168015&view=rev
Log:
minor tweaks to build procedure (site can now be built from build.xml and
forrest build destination is configurable)
Added:
myfaces/trunk/build/forrest.local.properties.sample
Modified:
myfaces/trunk/build/build-site.xml
myfaces/trunk/build/build.xml
Modified: myfaces/trunk/build/build-site.xml
URL:
http://svn.apache.org/viewcvs/myfaces/trunk/build/build-site.xml?rev=168015&r1=168014&r2=168015&view=diff
==============================================================================
--- myfaces/trunk/build/build-site.xml (original)
+++ myfaces/trunk/build/build-site.xml Tue May 3 16:03:01 2005
@@ -7,13 +7,12 @@
* FORREST_HOME must be set as an environment variable
-->
- <property environment="env"/>
- <property name="forrest.home" value="${env.FORREST_HOME}"/>
+ <property environment="env"/>
+ <property name="forrest.home" value="${env.FORREST_HOME}"/>
- <import file="${env.FORREST_HOME}/forrest.build.xml"/>
+ <import file="${env.FORREST_HOME}/forrest.build.xml"/>
- <!-- 'site' is a target imported from forrest.build.xml -->
- <target name="all" depends="site">
- </target>
+ <!-- 'site' is a target imported from forrest.build.xml -->
+ <target name="all" depends="site"/>
-</project>
\ No newline at end of file
+</project>
Modified: myfaces/trunk/build/build.xml
URL:
http://svn.apache.org/viewcvs/myfaces/trunk/build/build.xml?rev=168015&r1=168014&r2=168015&view=diff
==============================================================================
--- myfaces/trunk/build/build.xml (original)
+++ myfaces/trunk/build/build.xml Tue May 3 16:03:01 2005
@@ -836,6 +836,14 @@
</target>
+ <target name="site-dist">
+
+ <ant antfile="build-site.xml" inheritall="false" target="all">
+ <property file="forrest.local.properties"/>
+ </ant>
+
+ </target>
+
<target name="release" depends="prepare, src-release, bin-release,
app-release"/>
</project>
Added: myfaces/trunk/build/forrest.local.properties.sample
URL:
http://svn.apache.org/viewcvs/myfaces/trunk/build/forrest.local.properties.sample?rev=168015&view=auto
==============================================================================
--- myfaces/trunk/build/forrest.local.properties.sample (added)
+++ myfaces/trunk/build/forrest.local.properties.sample Tue May 3 16:03:01 2005
@@ -0,0 +1 @@
+project.site-dir=d:\\open-source\\myfaces-site
\ No newline at end of file