Author: jmitchell
Date: Sun Mar 27 09:21:19 2005
New Revision: 159158

URL: http://svn.apache.org/viewcvs?view=rev&rev=159158
Log:
fix line endings

Modified:
    struts/build/trunk/maven.xml

Modified: struts/build/trunk/maven.xml
URL: 
http://svn.apache.org/viewcvs/struts/build/trunk/maven.xml?view=diff&r1=159157&r2=159158
==============================================================================
--- struts/build/trunk/maven.xml (original)
+++ struts/build/trunk/maven.xml Sun Mar 27 09:21:19 2005
@@ -1,161 +1,161 @@
-<?xml version="1.0"?>
-
-<project    default="build-all"
-            xmlns:j="jelly:core"
-            xmlns:ant="jelly:ant"
-            xmlns:maven="jelly:maven">
-
-       <tstamp>
-               <format property="today" pattern="yyyyMMdd"/>
-       </tstamp>
-
-       <goal name="nightly">
-         <attainGoal name="clean-all"/>
-         <attainGoal name="build-all"/>
-         
-         <ant:mkdir dir="nightly/struts-apps/"/>
-
-         <ant:copy tofile="nightly/struts-apps/struts-blank-${today}.war">
-               <ant:fileset dir="../apps/blank/target/">
-               <ant:include name="struts-blank.war"/>
-               </ant:fileset>
-         </ant:copy>
-         
-         <ant:copy tofile="nightly/struts-apps/struts-mailreader-${today}.war">
-               <ant:fileset dir="../apps/shared/target/">
-               <ant:include name="struts-mailreader.war"/>
-               </ant:fileset>
-         </ant:copy>
-         
-         <ant:copy tofile="nightly/struts-apps/struts-examples-${today}.war">
-               <ant:fileset dir="../apps/examples/target/">
-               <ant:include name="struts-examples.war"/>
-               </ant:fileset>
-         </ant:copy>
-         
-       </goal>
-
-
-       <goal name="build-all">
-
-                       <maven:reactor
-                             basedir="../"
-                             includes="*/project.xml"
-                             excludes="build/project.xml"
-                             goals="dist"
-                             banner="Building nightlies"
-                     ignoreFailures="true"/>
-
-                       <maven:reactor
-                             basedir="../"
-                             includes="*/project.xml"
-                             excludes="build/project.xml"
-                             goals="copy-distribution"
-                             banner="Building nightlies"
-                     ignoreFailures="true"/>
-
-       </goal>
-
-
-       <goal name="clean-all">
-
-                       <maven:reactor
-                             basedir="../"
-                             includes="*/project.xml"
-                             excludes="build/project.xml"
-                             goals="clean"
-                             banner="Building nightlies"
-                     ignoreFailures="true"/>
-                       
-       </goal>
-
-       <postGoal name="dist">
-               <attainGoal name="jar:install"/>
-       </postGoal>
-
-       <postGoal name="dist:prepare-bin-filesystem">
-               <!-- Copy Instructions and Readmes -->
-               <ant:copy todir="${maven.dist.bin.assembly.dir}">
-                 <ant:fileset dir="build/">
-                       <ant:include name="README*"/>
-                       <ant:include name="LICENSE*"/>
-                       <ant:include name="STATUS*"/>
-                       <ant:include name="INSTALL*"/>
-                 </ant:fileset>
-               </ant:copy>
-               
-       </postGoal>
-
-       <postGoal name="dist:prepare-src-filesystem">
-       
-               <!-- Copy Instructions and Readmes -->
-               <ant:copy todir="${maven.dist.src.assembly.dir}">
-                 <ant:fileset dir="build">
-                       <ant:include name="README*"/>
-                       <ant:include name="LICENSE*"/>
-                       <ant:include name="STATUS*"/>
-                       <ant:include name="INSTALL*"/>
-                 </ant:fileset>
-               </ant:copy>
-
-               <!-- Copy Maven Control files -->
-               <ant:copy todir="${maven.dist.src.assembly.dir}/build">
-                 <ant:fileset dir="build">
-                       <ant:include name="project.*"/>
-                       <ant:include name="*.xml"/>
-                       <ant:include name="*.jsl"/>
-                 </ant:fileset>
-               </ant:copy>
-       </postGoal>
-
-       <goal name="copy-artifacts">
-
-                       <maven:reactor
-                             basedir="../"
-                             includes="*/project.xml"
-                             excludes="build/project.xml"
-                             goals="copy-distribution"
-                             banner="Copy nightly artifacts"
-                     ignoreFailures="false"/>
-                       
-       </goal>
-
-       <goal name="copy-distribution">
-<!--
-       <ant:copy 
todir="../build/${today}/${pom.artifactId}-${pom.currentVersion}">
-         <ant:fileset dir="${maven.build.dir}/distributions">
-               <ant:include name="*"/>
-         </ant:fileset>
-       </ant:copy>
--->
-
-       <ant:mkdir dir="../build/nightly/${pom.artifactId}/"/>
-
-       <ant:copy 
tofile="../build/nightly/${pom.artifactId}/${pom.artifactId}-${pom.currentVersion}-${today}.tar.gz">
-         <ant:fileset dir="${maven.build.dir}/distributions">
-               <ant:include 
name="${pom.artifactId}-${pom.currentVersion}.tar.gz"/>
-         </ant:fileset>
-       </ant:copy>
-
-       <ant:copy 
tofile="../build/nightly/${pom.artifactId}/${pom.artifactId}-${pom.currentVersion}-${today}.zip">
-         <ant:fileset dir="${maven.build.dir}/distributions">
-               <ant:include 
name="${pom.artifactId}-${pom.currentVersion}.zip"/>
-         </ant:fileset>
-       </ant:copy>
-
-       <ant:copy 
tofile="../build/nightly/${pom.artifactId}/${pom.artifactId}-${pom.currentVersion}-${today}-src.tar.gz">
-         <ant:fileset dir="${maven.build.dir}/distributions">
-               <ant:include 
name="${pom.artifactId}-${pom.currentVersion}-src.tar.gz"/>
-         </ant:fileset>
-       </ant:copy>
-
-       <ant:copy 
tofile="../build/nightly/${pom.artifactId}/${pom.artifactId}-${pom.currentVersion}-${today}-src.zip">
-         <ant:fileset dir="${maven.build.dir}/distributions">
-               <ant:include 
name="${pom.artifactId}-${pom.currentVersion}-src.zip"/>
-         </ant:fileset>
-       </ant:copy>
-
-  </goal>
-
-
-</project>
+<?xml version="1.0"?>
+
+<project    default="build-all"
+            xmlns:j="jelly:core"
+            xmlns:ant="jelly:ant"
+            xmlns:maven="jelly:maven">
+
+       <tstamp>
+               <format property="today" pattern="yyyyMMdd"/>
+       </tstamp>
+
+       <goal name="nightly">
+         <attainGoal name="clean-all"/>
+         <attainGoal name="build-all"/>
+         
+         <ant:mkdir dir="nightly/struts-apps/"/>
+
+         <ant:copy tofile="nightly/struts-apps/struts-blank-${today}.war">
+               <ant:fileset dir="../apps/blank/target/">
+               <ant:include name="struts-blank.war"/>
+               </ant:fileset>
+         </ant:copy>
+         
+         <ant:copy tofile="nightly/struts-apps/struts-mailreader-${today}.war">
+               <ant:fileset dir="../apps/shared/target/">
+               <ant:include name="struts-mailreader.war"/>
+               </ant:fileset>
+         </ant:copy>
+         
+         <ant:copy tofile="nightly/struts-apps/struts-examples-${today}.war">
+               <ant:fileset dir="../apps/examples/target/">
+               <ant:include name="struts-examples.war"/>
+               </ant:fileset>
+         </ant:copy>
+         
+       </goal>
+
+
+       <goal name="build-all">
+
+                       <maven:reactor
+                             basedir="../"
+                             includes="*/project.xml"
+                             excludes="build/project.xml"
+                             goals="dist"
+                             banner="Building nightlies"
+                     ignoreFailures="true"/>
+
+                       <maven:reactor
+                             basedir="../"
+                             includes="*/project.xml"
+                             excludes="build/project.xml"
+                             goals="copy-distribution"
+                             banner="Building nightlies"
+                     ignoreFailures="true"/>
+
+       </goal>
+
+
+       <goal name="clean-all">
+
+                       <maven:reactor
+                             basedir="../"
+                             includes="*/project.xml"
+                             excludes="build/project.xml"
+                             goals="clean"
+                             banner="Building nightlies"
+                     ignoreFailures="true"/>
+                       
+       </goal>
+
+       <postGoal name="dist">
+               <attainGoal name="jar:install"/>
+       </postGoal>
+
+       <postGoal name="dist:prepare-bin-filesystem">
+               <!-- Copy Instructions and Readmes -->
+               <ant:copy todir="${maven.dist.bin.assembly.dir}">
+                 <ant:fileset dir="build/">
+                       <ant:include name="README*"/>
+                       <ant:include name="LICENSE*"/>
+                       <ant:include name="STATUS*"/>
+                       <ant:include name="INSTALL*"/>
+                 </ant:fileset>
+               </ant:copy>
+               
+       </postGoal>
+
+       <postGoal name="dist:prepare-src-filesystem">
+       
+               <!-- Copy Instructions and Readmes -->
+               <ant:copy todir="${maven.dist.src.assembly.dir}">
+                 <ant:fileset dir="build">
+                       <ant:include name="README*"/>
+                       <ant:include name="LICENSE*"/>
+                       <ant:include name="STATUS*"/>
+                       <ant:include name="INSTALL*"/>
+                 </ant:fileset>
+               </ant:copy>
+
+               <!-- Copy Maven Control files -->
+               <ant:copy todir="${maven.dist.src.assembly.dir}/build">
+                 <ant:fileset dir="build">
+                       <ant:include name="project.*"/>
+                       <ant:include name="*.xml"/>
+                       <ant:include name="*.jsl"/>
+                 </ant:fileset>
+               </ant:copy>
+       </postGoal>
+
+       <goal name="copy-artifacts">
+
+                       <maven:reactor
+                             basedir="../"
+                             includes="*/project.xml"
+                             excludes="build/project.xml"
+                             goals="copy-distribution"
+                             banner="Copy nightly artifacts"
+                     ignoreFailures="false"/>
+                       
+       </goal>
+
+       <goal name="copy-distribution">
+<!--
+       <ant:copy 
todir="../build/${today}/${pom.artifactId}-${pom.currentVersion}">
+         <ant:fileset dir="${maven.build.dir}/distributions">
+               <ant:include name="*"/>
+         </ant:fileset>
+       </ant:copy>
+-->
+
+       <ant:mkdir dir="../build/nightly/${pom.artifactId}/"/>
+
+       <ant:copy 
tofile="../build/nightly/${pom.artifactId}/${pom.artifactId}-${pom.currentVersion}-${today}.tar.gz">
+         <ant:fileset dir="${maven.build.dir}/distributions">
+               <ant:include 
name="${pom.artifactId}-${pom.currentVersion}.tar.gz"/>
+         </ant:fileset>
+       </ant:copy>
+
+       <ant:copy 
tofile="../build/nightly/${pom.artifactId}/${pom.artifactId}-${pom.currentVersion}-${today}.zip">
+         <ant:fileset dir="${maven.build.dir}/distributions">
+               <ant:include 
name="${pom.artifactId}-${pom.currentVersion}.zip"/>
+         </ant:fileset>
+       </ant:copy>
+
+       <ant:copy 
tofile="../build/nightly/${pom.artifactId}/${pom.artifactId}-${pom.currentVersion}-${today}-src.tar.gz">
+         <ant:fileset dir="${maven.build.dir}/distributions">
+               <ant:include 
name="${pom.artifactId}-${pom.currentVersion}-src.tar.gz"/>
+         </ant:fileset>
+       </ant:copy>
+
+       <ant:copy 
tofile="../build/nightly/${pom.artifactId}/${pom.artifactId}-${pom.currentVersion}-${today}-src.zip">
+         <ant:fileset dir="${maven.build.dir}/distributions">
+               <ant:include 
name="${pom.artifactId}-${pom.currentVersion}-src.zip"/>
+         </ant:fileset>
+       </ant:copy>
+
+  </goal>
+
+
+</project>



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to