You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by di...@apache.org on 2003/03/30 18:04:55 UTC

cvs commit: maven/src/plugins-build/ant plugin.jelly

dion        2003/03/30 08:04:55

  Modified:    src/plugins-build/ant plugin.jelly
  Log:
  detab
  
  Revision  Changes    Path
  1.5       +9 -9      maven/src/plugins-build/ant/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven/src/plugins-build/ant/plugin.jelly,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- plugin.jelly	26 Mar 2003 12:32:49 -0000	1.4
  +++ plugin.jelly	30 Mar 2003 16:04:55 -0000	1.5
  @@ -82,13 +82,13 @@
       <!-- Copy any resources that must be present in the deployed
            JAR file.
       -->
  -		<j:forEach var="resource" items="${pom.build.resources}">
  +    <j:forEach var="resource" items="${pom.build.resources}">
    
       <copy todir="$${classesdir}">
         
         <j:set var="dir" value="${resource.directory}"/>
         <j:if test="${empty dir}">
  -      	<j:set var="dir" value="."/>
  +        <j:set var="dir" value="."/>
         </j:if>
         
         <fileset dir="${dir}">
  @@ -102,16 +102,16 @@
         </fileset>
       </copy>
       
  -		</j:forEach>
  +    </j:forEach>
   
       <!-- Copy any resources required for unit testing -->
  -		<j:forEach var="resource" items="${pom.build.unitTest.resources}">
  +    <j:forEach var="resource" items="${pom.build.unitTest.resources}">
    
       <copy todir="$${testclassesdir}">
         
         <j:set var="dir" value="${resource.directory}"/>
         <j:if test="${empty dir}">
  -      	<j:set var="dir" value="."/>
  +        <j:set var="dir" value="."/>
         </j:if>
         
         <fileset dir="${dir}">
  @@ -125,7 +125,7 @@
         </fileset>
       </copy>
    
  -		</j:forEach>
  +    </j:forEach>
   
     </target>
       
  @@ -155,8 +155,8 @@
       description="o Create a distribution">
       <mkdir dir="dist"/>
       <copy todir="dist">
  -      <fileset dir="$${defaulttargetdir}" includes="*.jar"/>      	
  -      <fileset dir="$${basedir}" includes="LICENSE*, README*"/>      	
  +      <fileset dir="$${defaulttargetdir}" includes="*.jar"/>        
  +      <fileset dir="$${basedir}" includes="LICENSE*, README*"/>        
       </copy>
     </target>
    
  @@ -178,7 +178,7 @@
                fork="true"
                dir="./">
   <!--
  -	I think the following is wrong
  +  I think the following is wrong
           <sysproperty key="basedir" value="${pom.build.unitTestSourceDirectory}"/>
           <sysproperty key="basedir" value="${basedir}"/> // this gives a full path
           including the C:\ on windows
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org