You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ip...@apache.org on 2005/10/12 22:27:42 UTC

svn commit: r315032 - /webservices/axis/trunk/site/src/java/build.xml

Author: ips
Date: Wed Oct 12 13:27:41 2005
New Revision: 315032

URL: http://svn.apache.org/viewcvs?rev=315032&view=rev
Log:
added call to fixcrlf task in forrest target to ensure line endings are consistent in generated text files (otherwise SVN barfs when you try to commit the files)

Modified:
    webservices/axis/trunk/site/src/java/build.xml

Modified: webservices/axis/trunk/site/src/java/build.xml
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/site/src/java/build.xml?rev=315032&r1=315031&r2=315032&view=diff
==============================================================================
--- webservices/axis/trunk/site/src/java/build.xml (original)
+++ webservices/axis/trunk/site/src/java/build.xml Wed Oct 12 13:27:41 2005
@@ -95,6 +95,10 @@
       <arg line="/c forrest"/>
     </exec>
     <echo message="=> DONE !!"/>
+    <echo>
+      => Fixing line endings in generated files ...
+    </echo>    
+    <fixcrlf srcdir="build/site" eol="lf" includes="**/*.css, **/*.html, **/*.js, **/*.xsl*" />
   </target>
 
 <!-- ***************************************************************** -->
@@ -125,4 +129,4 @@
     </echo>
   </target>
 
-</project>
\ No newline at end of file
+</project>