Author: sabob
Date: Mon Nov 2 10:24:28 2009
New Revision: 831848
URL: http://svn.apache.org/viewvc?rev=831848&view=rev
Log:
added support for nested fileSets
Modified:
incubator/click/trunk/tools/standalone/README.txt
Modified: incubator/click/trunk/tools/standalone/README.txt
URL: http://svn.apache.org/viewvc/incubator/click/trunk/tools/standalone/README.txt?rev=831848&r1=831847&r2=831848&view=diff
==============================================================================
--- incubator/click/trunk/tools/standalone/README.txt (original)
+++ incubator/click/trunk/tools/standalone/README.txt Mon Nov 2 10:24:28 2009
@@ -14,5 +14,25 @@
<deploy dir="C:/dev/myapp/web/WEB-INF" todir="c:/dev/myapp/web/"/>
</target>
+
+ The deploy task also supports nested filesets:
+
+ <target name="deploy" description="Deploy Click static resources" depends="build">
+ <taskdef name="deploy"
+ classname="org.apache.click.tools.deploy.DeployTask"
+ classpath="C:/dev/click-2.1.0/lib/click-dev-tasks-1.1.jar"/>
+
+ <deploy todir="c:/dev/myapp/web/">
+ <fileset dir="C:/dev/myapp/web/WEB-INF">
+ <include name="**/classes"/>
+ <include name="**/*.jar"/>
+ </fileset>
+ <fileset dir="C:/dev/myjars/lib">
+ <include name="click-xxx.jar"/>
+ <include name="click-extras-xxx.jar"/>
+ </fileset>
+ </deploy>
+ </target>
+
* devtasks - a set of ANT tasks to help in the development of Click Framework
itself, Click based 3rd party controls and Click based webapplications.
|