Author: sumedha
Date: Tue Jul 31 10:15:44 2007
New Revision: 561401
URL: http://svn.apache.org/viewvc?view=rev&rev=561401
Log:
Copying images inside xdocs folder with filtering off
Modified:
webservices/axis2/branches/java/1_3/modules/distribution/pom.xml
Modified: webservices/axis2/branches/java/1_3/modules/distribution/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_3/modules/distribution/pom.xml?view=diff&rev=561401&r1=561400&r2=561401
==============================================================================
--- webservices/axis2/branches/java/1_3/modules/distribution/pom.xml (original)
+++ webservices/axis2/branches/java/1_3/modules/distribution/pom.xml Tue Jul 31
10:15:44 2007
@@ -246,10 +246,22 @@
<phase>package</phase>
<configuration>
<tasks>
- <!-- TODO : filtering is not working, copy images
with filtering off -->
+ <!-- TODO : filtering is not working -->
<filter
filtersfile="../../modules/documentation/xdocs/dynamic-labels.properties" />
<copy todir="target/xdocs" filtering="on">
- <fileset
dir="../../modules/documentation/xdocs"/>
+ <fileset dir="../../modules/documentation/xdocs">
+ <exclude name="**/*.gif"/>
+ <exclude name="**/*.jpg"/>
+ <exclude name="**/*.png"/>
+ </fileset>
+ </copy>
+ <!-- copy images without filtering -->
+ <copy todir="target/xdocs" >
+ <fileset dir="../../modules/documentation/xdocs">
+ <include name="**/*.gif"/>
+ <include name="**/*.jpg"/>
+ <include name="**/*.png"/>
+ </fileset>
</copy>
</tasks>
</configuration>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]