You are viewing a plain text version of this content. The canonical link for it is here.
Posted to easyant-commits@incubator.apache.org by hi...@apache.org on 2011/02/22 15:56:09 UTC

svn commit: r1073371 [27/28] - in /incubator/easyant/core/trunk: ./ bin/ example/build-configurations/ example/build-configurations/src/main/java/org/apache/easyant/example/ example/build-configurations/src/test/java/org/apache/easyant/example/ example...

Modified: incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/run-java/0.1/run-java.ivy
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/run-java/0.1/run-java.ivy?rev=1073371&r1=1073370&r2=1073371&view=diff
==============================================================================
--- incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/run-java/0.1/run-java.ivy (original)
+++ incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/run-java/0.1/run-java.ivy Tue Feb 22 15:55:55 2011
@@ -15,13 +15,13 @@
    limitations under the License.
 -->
 <ivy-module version="2.0"> 
-	<info organisation="org.apache.easyant.plugins"
-	       module="run-java"
-	       status="milestone"
-	       revision="0.1">
-	       <description>This module provides java bytecode execution feature.</description>
-	</info>
-	<publications>
-		<artifact type="ant" />
-	</publications>
+    <info organisation="org.apache.easyant.plugins"
+           module="run-java"
+           status="milestone"
+           revision="0.1">
+           <description>This module provides java bytecode execution feature.</description>
+    </info>
+    <publications>
+        <artifact type="ant" />
+    </publications>
 </ivy-module>

Modified: incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/scaladoc/0.1/scaladoc.ant
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/scaladoc/0.1/scaladoc.ant?rev=1073371&r1=1073370&r2=1073371&view=diff
==============================================================================
--- incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/scaladoc/0.1/scaladoc.ant (original)
+++ incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/scaladoc/0.1/scaladoc.ant Tue Feb 22 15:55:55 2011
@@ -15,47 +15,47 @@
    limitations under the License.
 -->
 <project name="org.apache.easyant.plugins#scaladoc"
-	xmlns:ea="antlib:org.apache.easyant">
-	
-	<ea:core-version requiredrevision="[0.8,+]" />
-	
-	<target name=":init" phase="validate">
-		<ea:parameter phase="validate" />
-		<ea:parameter phase="report" />
-		
-		<ea:parameter property="src.main.scala" required="true"
-			description="directory where sources to be compiled are" />
-		<ea:parameter property="src.test.scala" required="true"
-			description="directory where test sources to be compiled are" />
-		<ea:parameter path="compile.main.classpath" required="true" 
-			description="path used to compile main sources" />
-		<ea:parameter path="compile.test.classpath" required="true" 
-			description="path used to compile test sources" />
-		
-		<ea:parameter property="target.report" default="${target}/report" 
-			description="base directory for reports"/>
-		<ea:parameter property="target.scaladoc" default="${target.report}/javadoc" 
-			description="base directory where scaladoc will be generated" />
-				
-		<ea:parameter property="target.scaladoc.main" default="${target.scaladoc}/main" 
-			description="directory where scaladoc will be generated" />
-		<ea:parameter property="target.scaladoc.test" default="${target.scaladoc}/test" 
-			description="directory where scaladoc for tests will be generated" />
-		
-		<available file="${src.main.scala}" property="has.src.main.scala" />
-		<available file="${src.test.scala}" property="has.src.test.scala" />
-	</target>	
+    xmlns:ea="antlib:org.apache.easyant">
+    
+    <ea:core-version requiredrevision="[0.8,+]" />
+    
+    <target name=":init" phase="validate">
+        <ea:parameter phase="validate" />
+        <ea:parameter phase="report" />
+        
+        <ea:parameter property="src.main.scala" required="true"
+            description="directory where sources to be compiled are" />
+        <ea:parameter property="src.test.scala" required="true"
+            description="directory where test sources to be compiled are" />
+        <ea:parameter path="compile.main.classpath" required="true" 
+            description="path used to compile main sources" />
+        <ea:parameter path="compile.test.classpath" required="true" 
+            description="path used to compile test sources" />
+        
+        <ea:parameter property="target.report" default="${target}/report" 
+            description="base directory for reports"/>
+        <ea:parameter property="target.scaladoc" default="${target.report}/javadoc" 
+            description="base directory where scaladoc will be generated" />
+                
+        <ea:parameter property="target.scaladoc.main" default="${target.scaladoc}/main" 
+            description="directory where scaladoc will be generated" />
+        <ea:parameter property="target.scaladoc.test" default="${target.scaladoc}/test" 
+            description="directory where scaladoc for tests will be generated" />
+        
+        <available file="${src.main.scala}" property="has.src.main.scala" />
+        <available file="${src.test.scala}" property="has.src.test.scala" />
+    </target>   
 
-	<target name="-main" if="has.src.main.scala">
-		<mkdir dir="${target.scaladoc.main}"/>
-		<scaladoc destdir="${target.scaladoc.main}" srcdir="${src.main.scala}" classpathref="compile.main.classpath"/>
-	</target>
-	
-	<target name="-test" if="has.src.test.scala">
-		<mkdir name="${target.scaladoc.test}"/>
-		<scaladoc destdir="${target.scaladoc.test}" srcdir="${src.test.scala}" classpathref="compile.test.classpath"/>
-	</target>
-	
-	<target name=":scaladoc" depends="validate,-main,-test" phase="report" description="generate scaladoc report for main classes and test classes"/>
-	<target name="doit" depends=":scaladoc" />
+    <target name="-main" if="has.src.main.scala">
+        <mkdir dir="${target.scaladoc.main}"/>
+        <scaladoc destdir="${target.scaladoc.main}" srcdir="${src.main.scala}" classpathref="compile.main.classpath"/>
+    </target>
+    
+    <target name="-test" if="has.src.test.scala">
+        <mkdir name="${target.scaladoc.test}"/>
+        <scaladoc destdir="${target.scaladoc.test}" srcdir="${src.test.scala}" classpathref="compile.test.classpath"/>
+    </target>
+    
+    <target name=":scaladoc" depends="validate,-main,-test" phase="report" description="generate scaladoc report for main classes and test classes"/>
+    <target name="doit" depends=":scaladoc" />
 </project>

Modified: incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/scaladoc/0.1/scaladoc.ivy
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/scaladoc/0.1/scaladoc.ivy?rev=1073371&r1=1073370&r2=1073371&view=diff
==============================================================================
--- incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/scaladoc/0.1/scaladoc.ivy (original)
+++ incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/scaladoc/0.1/scaladoc.ivy Tue Feb 22 15:55:55 2011
@@ -15,13 +15,13 @@
    limitations under the License.
 -->
 <ivy-module version="2.0"> 
-	<info organisation="org.apache.easyant.plugins"
-	       module="scaladoc"
-	       status="milestone"
-	       revision="0.1">
-	       <description>This module provides scaladoc feature.</description>
-	</info>
-	<publications>
-		<artifact type="ant" />
-	</publications>
+    <info organisation="org.apache.easyant.plugins"
+           module="scaladoc"
+           status="milestone"
+           revision="0.1">
+           <description>This module provides scaladoc feature.</description>
+    </info>
+    <publications>
+        <artifact type="ant" />
+    </publications>
 </ivy-module>

Modified: incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/scm-svn/0.1/scm-svn.ant
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/scm-svn/0.1/scm-svn.ant?rev=1073371&r1=1073370&r2=1073371&view=diff
==============================================================================
--- incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/scm-svn/0.1/scm-svn.ant (original)
+++ incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/scm-svn/0.1/scm-svn.ant Tue Feb 22 15:55:55 2011
@@ -15,50 +15,50 @@
    limitations under the License.
 -->
 <project name="org.apache.easyant.plugins#scm-svn" xmlns:ea="antlib:org.apache.easyant">
-	
-	<ea:core-version requiredrevision="[0.8,+]" />
-	
+    
+    <ea:core-version requiredrevision="[0.8,+]" />
+    
     <target name=":init" phase="validate" >
                 <ea:parameter phase="validate" />
-		<typedef resource="org/tigris/subversion/svnant/svnantlib.xml" classpathref="org.apache.easyant.plugins#scm-svn.classpath" /> 
+        <typedef resource="org/tigris/subversion/svnant/svnantlib.xml" classpathref="org.apache.easyant.plugins#scm-svn.classpath" /> 
     </target>
 
     <target name="-config" depends=":init">
-	<ea:parameter property="scm.connection.username" description="defines the username used to connect to the SCM" default=""/>
-	<ea:parameter property="scm.connection.password" description="defines the password used to connect to the SCM" default=""/>
-	<ea:parameter property="scm.connection.baseurl" description="the base scm url of your project" required="true"/>
-	<ea:parameter property="scm.svn.javahl" description="set to 'false' to use command line interface instead of JNI JavaHL binding" default="true"/>
-	<ea:parameter property="scm.svn.svnkit" description="set to 'false' to use command line interface instead of SVNKit binding" default="false"/>
-	<ea:parameter property="scm.svn.failonerror" description="controls wheter an error stops the build or is merely reported to the screen" default="true"/>
-	<ea:parameter property="scm.svn.dateformatter" description="formatter definition used to format/parse date (e.g. when revision is specified as date)" default="MM/DD/YYYY HH:MM AM_PM"/>
-	<ea:parameter property="scm.svn.datetimezone" description="time zone used to format/parse dates (e.g. when revision is specified as date)" default="local"/>
-	<ea:parameter property="scm.working.copy" default="${basedir}" description="Define the source url (used for copy)"/>
+    <ea:parameter property="scm.connection.username" description="defines the username used to connect to the SCM" default=""/>
+    <ea:parameter property="scm.connection.password" description="defines the password used to connect to the SCM" default=""/>
+    <ea:parameter property="scm.connection.baseurl" description="the base scm url of your project" required="true"/>
+    <ea:parameter property="scm.svn.javahl" description="set to 'false' to use command line interface instead of JNI JavaHL binding" default="true"/>
+    <ea:parameter property="scm.svn.svnkit" description="set to 'false' to use command line interface instead of SVNKit binding" default="false"/>
+    <ea:parameter property="scm.svn.failonerror" description="controls wheter an error stops the build or is merely reported to the screen" default="true"/>
+    <ea:parameter property="scm.svn.dateformatter" description="formatter definition used to format/parse date (e.g. when revision is specified as date)" default="MM/DD/YYYY HH:MM AM_PM"/>
+    <ea:parameter property="scm.svn.datetimezone" description="time zone used to format/parse dates (e.g. when revision is specified as date)" default="local"/>
+    <ea:parameter property="scm.working.copy" default="${basedir}" description="Define the source url (used for copy)"/>
     </target>
 
     <target name=":tag" description="tag the project" depends="-config">
            <echo>creating tag on the project</echo>
-	   <ea:parameter property="scm.svn.base.tags" default="${scm.connection.baseurl}/tags" description="The url of tags base directory (used by svn protocol). It is not necessary to set it if you use the standard svn layout (branches/tags/trunk)."/>
-	   <ea:parameter property="scm.tag.name" required="true" description="name of the tag to create"/>
-	   <ea:parameter property="scm.commit.message" required="true" description="the commit message"/>
-	   <svn username="${scm.connection.username}" password="${scm.connection.password}" javahl="${scm.svn.javahl}" svnkit="${scm.svn.svnkit}" dateFormatter="${scm.svn.dateformatter}" dateTimeZone="${scm.svn.datetimezone}" failOnError="${scm.svn.failonerror}">
-		<copy srcPath="${scm.working.copy}" destUrl="${scm.svn.base.tags}/${scm.tag.name}" message="${scm.commit.message}"/>
-	   </svn>
+       <ea:parameter property="scm.svn.base.tags" default="${scm.connection.baseurl}/tags" description="The url of tags base directory (used by svn protocol). It is not necessary to set it if you use the standard svn layout (branches/tags/trunk)."/>
+       <ea:parameter property="scm.tag.name" required="true" description="name of the tag to create"/>
+       <ea:parameter property="scm.commit.message" required="true" description="the commit message"/>
+       <svn username="${scm.connection.username}" password="${scm.connection.password}" javahl="${scm.svn.javahl}" svnkit="${scm.svn.svnkit}" dateFormatter="${scm.svn.dateformatter}" dateTimeZone="${scm.svn.datetimezone}" failOnError="${scm.svn.failonerror}">
+        <copy srcPath="${scm.working.copy}" destUrl="${scm.svn.base.tags}/${scm.tag.name}" message="${scm.commit.message}"/>
+       </svn>
     </target>
     <target name=":branch" description="branch the project" depends="-config">
            <echo>creating branch on the project</echo>
-	   <ea:parameter property="scm.svn.base.branches" default="${scm.connection.baseurl}/branches" description="The url of tags base directory (used by svn protocol). It is not necessary to set it if you use the standard svn layout (branches/tags/trunk)."/>
-	   <ea:parameter property="scm.commit.message" required="true" description="the commit message"/>
-	   <ea:parameter property="scm.branch.name" default="${module.version.target}" description="name of the branch to create"/>
-	   <svn username="${scm.connection.username}" password="${scm.connection.password}" javahl="${scm.svn.javahl}" svnkit="${scm.svn.svnkit}" dateFormatter="${scm.svn.dateformatter}" dateTimeZone="${scm.svn.datetimezone}" failOnError="${scm.svn.failonerror}">
-		<copy srcPath="${scm.working.copy}" destUrl="${scm.svn.base.branches}/${scm.branch.name}" message="${scm.commit.message}"/>
-	   </svn>
+       <ea:parameter property="scm.svn.base.branches" default="${scm.connection.baseurl}/branches" description="The url of tags base directory (used by svn protocol). It is not necessary to set it if you use the standard svn layout (branches/tags/trunk)."/>
+       <ea:parameter property="scm.commit.message" required="true" description="the commit message"/>
+       <ea:parameter property="scm.branch.name" default="${module.version.target}" description="name of the branch to create"/>
+       <svn username="${scm.connection.username}" password="${scm.connection.password}" javahl="${scm.svn.javahl}" svnkit="${scm.svn.svnkit}" dateFormatter="${scm.svn.dateformatter}" dateTimeZone="${scm.svn.datetimezone}" failOnError="${scm.svn.failonerror}">
+        <copy srcPath="${scm.working.copy}" destUrl="${scm.svn.base.branches}/${scm.branch.name}" message="${scm.commit.message}"/>
+       </svn>
     </target>
 
     <!-- release -->
 
     <target name="-init-release">
        <ea:parameter property="scm.tag.name" default="${version}" description="name of the tag to create"/>
-	   <ea:parameter property="scm.commit.message" default="EasyAnt: release ${version}" description="the commit message"/>
+       <ea:parameter property="scm.commit.message" default="EasyAnt: release ${version}" description="the commit message"/>
     </target>
 
     <target name=":release" phase="release" depends="generate-release-version,-init-release,:tag"/>
@@ -66,8 +66,8 @@
     <!-- integration -->
 
     <target name="-init-integration">
-	   <ea:parameter property="scm.tag.name" default="${version}" description="name of the tag to create"/>
-	   <ea:parameter property="scm.commit.message" default="EasyAnt: release ${version}" description="the commit message"/>
+       <ea:parameter property="scm.tag.name" default="${version}" description="name of the tag to create"/>
+       <ea:parameter property="scm.commit.message" default="EasyAnt: release ${version}" description="the commit message"/>
     </target>
 
     <target name=":integration" phase="publish-shared" depends="generate-shared-version,-init-integration,:tag"/>

Modified: incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/scm-svn/0.1/scm-svn.ivy
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/scm-svn/0.1/scm-svn.ivy?rev=1073371&r1=1073370&r2=1073371&view=diff
==============================================================================
--- incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/scm-svn/0.1/scm-svn.ivy (original)
+++ incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/scm-svn/0.1/scm-svn.ivy Tue Feb 22 15:55:55 2011
@@ -15,12 +15,12 @@
    limitations under the License.
 -->
 <ivy-module version="2.0">
-	<info organisation="org.apache.easyant.plugins"
-	       module="scm-svn"
-	       status="milestone"
-	       revision="0.1">
-	       <description>This module provides svn feature.</description>
-	</info>
+    <info organisation="org.apache.easyant.plugins"
+           module="scm-svn"
+           status="milestone"
+           revision="0.1">
+           <description>This module provides svn feature.</description>
+    </info>
         <publications>
                 <artifact type="ant"/>
         </publications>

Modified: incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/skeleton/0.1/ivy.xml.tpl
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/skeleton/0.1/ivy.xml.tpl?rev=1073371&r1=1073370&r2=1073371&view=diff
==============================================================================
--- incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/skeleton/0.1/ivy.xml.tpl (original)
+++ incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/skeleton/0.1/ivy.xml.tpl Tue Feb 22 15:55:55 2011
@@ -18,6 +18,6 @@
     <info organisation="@skeleton.organisation@" module="@skeleton.module@" revision="@skeleton.revision@"/>
     
     <publications>
-    	<artifact type="@skeleton.type@"/>
+        <artifact type="@skeleton.type@"/>
     </publications>
 </ivy-module>

Modified: incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/skeleton/0.1/skeleton.ant
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/skeleton/0.1/skeleton.ant?rev=1073371&r1=1073370&r2=1073371&view=diff
==============================================================================
--- incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/skeleton/0.1/skeleton.ant (original)
+++ incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/skeleton/0.1/skeleton.ant Tue Feb 22 15:55:55 2011
@@ -41,8 +41,8 @@
         <condition property="skeleton.is.interactive">
             <istrue value="${skeleton.interactive.mode}"/>
         </condition>
-    	
-    	<echo message="skeleton 0.1 has been deprecated, we strongly recommend you to switch to the most recent one compatible with your easyant distribution" level="warning"/>
+        
+        <echo message="skeleton 0.1 has been deprecated, we strongly recommend you to switch to the most recent one compatible with your easyant distribution" level="warning"/>
    
     </target>
    
@@ -53,19 +53,19 @@
     <target name="-create-usage">
         <echo level="info">This target will now create a new project from a project skeleton.</echo>
         <echo level="info">This target can be called with -Dparameters, refer to the skeleton plugin documentation to have more informations.</echo>
-    	<ac:if>
-    		<and>
-    			<isset property="skeleton.org"/>
-    			<isset property="skeleton.module"/>
-    			<isset property="skeleton.rev"/>
-    		</and>
-    		<ac:then>
-    			<echo level="info">    Example: easyant skeleton:create -Dskeleton.org=${skeleton.org} -Dskeleton.module=${skeleton.module} -Dskeleton.rev=${skeleton.rev} -Dproject.org=org.mycompany -Dproject.module=myproject -Dproject.ref=0.1</echo>
-    		</ac:then>
-    		<ac:else>
-    			<echo level="info">    Example: easyant skeleton:create -Dskeleton.org=foo -Dskeleton.module=bar-skeleton -Dskeleton.rev=0.1 -Dproject.org=org.mycompany -Dproject.module=myproject -Dproject.ref=0.1</echo>
-    		</ac:else>
-    	</ac:if>
+        <ac:if>
+            <and>
+                <isset property="skeleton.org"/>
+                <isset property="skeleton.module"/>
+                <isset property="skeleton.rev"/>
+            </and>
+            <ac:then>
+                <echo level="info">    Example: easyant skeleton:create -Dskeleton.org=${skeleton.org} -Dskeleton.module=${skeleton.module} -Dskeleton.rev=${skeleton.rev} -Dproject.org=org.mycompany -Dproject.module=myproject -Dproject.ref=0.1</echo>
+            </ac:then>
+            <ac:else>
+                <echo level="info">    Example: easyant skeleton:create -Dskeleton.org=foo -Dskeleton.module=bar-skeleton -Dskeleton.rev=0.1 -Dproject.org=org.mycompany -Dproject.module=myproject -Dproject.ref=0.1</echo>
+            </ac:else>
+        </ac:if>
     </target>
 
     <target name="-check-create" if="skeleton.is.interactive">
@@ -81,7 +81,7 @@
     </target>
    
     <target name="-generate" depends="validate" if="skeleton.is.interactive">
-    	<echo>Choose a skeleton in the following list:</echo>
+        <echo>Choose a skeleton in the following list:</echo>
         <ea:searchmodule organisation="org.apache.easyant.skeletons" module="*" revision="*" propertyprefix="skeleton" settingsRef="easyant.ivy.instance"/>
     </target>
    
@@ -215,4 +215,4 @@
     </target>
    
     <target name="doit" depends="validate" />
-</project>
\ No newline at end of file
+</project>

Modified: incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/skeleton/0.1/skeleton.ivy
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/skeleton/0.1/skeleton.ivy?rev=1073371&r1=1073370&r2=1073371&view=diff
==============================================================================
--- incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/skeleton/0.1/skeleton.ivy (original)
+++ incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/skeleton/0.1/skeleton.ivy Tue Feb 22 15:55:55 2011
@@ -15,14 +15,14 @@
    limitations under the License.
 -->
 <ivy-module version="2.0"> 
-	<info organisation="org.apache.easyant.plugins"
-	       module="skeleton"
-	       status="milestone"
-	       revision="0.1">
-	       <description>This modules provides targets to create or install skeleton of projects.</description>
-	</info>
-	<publications>
-		<artifact type="ant" />
-		<artifact name="ivy.xml" type="tpl"/>
-	</publications>
+    <info organisation="org.apache.easyant.plugins"
+           module="skeleton"
+           status="milestone"
+           revision="0.1">
+           <description>This modules provides targets to create or install skeleton of projects.</description>
+    </info>
+    <publications>
+        <artifact type="ant" />
+        <artifact name="ivy.xml" type="tpl"/>
+    </publications>
 </ivy-module>

Modified: incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/skeleton/0.2/skeleton.ant
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/skeleton/0.2/skeleton.ant?rev=1073371&r1=1073370&r2=1073371&view=diff
==============================================================================
--- incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/skeleton/0.2/skeleton.ant (original)
+++ incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/skeleton/0.2/skeleton.ant Tue Feb 22 15:55:55 2011
@@ -32,7 +32,7 @@
         <ea:parameter property="skeleton.default.to.resolver" default="easyant-shared-modules" description="the repository name where the skeleton jar will be published" />
         <ea:parameter property="skeleton.default.revision" default="0.1" description="The default revision if the skeleton that will be published"/>
         <ea:parameter property="skeleton.default.organisation" default="org.apache.easyant.skeletons" description="The default organisation name of skeletons"/>
-    	<ea:parameter property="project.default.organisation" default="" description="The default organisation name of generated project"/>
+        <ea:parameter property="project.default.organisation" default="" description="The default organisation name of generated project"/>
        
         <ea:parameter property="skeleton.interactive.mode" default="true" description="specify if easyant should ask questions instead of using -Dproperties" />
                
@@ -49,19 +49,19 @@
     <target name="-generate-usage">
         <echo level="info">This target will now create a new project from a project skeleton.</echo>
         <echo level="info">This target can be called with -Dparameters, refer to the skeleton plugin documentation to have more informations.</echo>
-    	<ac:if>
-    		<and>
-    			<isset property="skeleton.org"/>
-    			<isset property="skeleton.module"/>
-    			<isset property="skeleton.rev"/>
-    		</and>
-    		<ac:then>
-    			<echo level="info">    Example: easyant skeleton:create -Dskeleton.org=${skeleton.org} -Dskeleton.module=${skeleton.module} -Dskeleton.rev=${skeleton.rev} -Dproject.org=org.mycompany -Dproject.module=myproject -Dproject.ref=0.1</echo>
-    		</ac:then>
-    		<ac:else>
-    			<echo level="info">    Example: easyant skeleton:create -Dskeleton.org=foo -Dskeleton.module=bar-skeleton -Dskeleton.rev=0.1 -Dproject.org=org.mycompany -Dproject.module=myproject -Dproject.ref=0.1</echo>
-    		</ac:else>
-    	</ac:if>
+        <ac:if>
+            <and>
+                <isset property="skeleton.org"/>
+                <isset property="skeleton.module"/>
+                <isset property="skeleton.rev"/>
+            </and>
+            <ac:then>
+                <echo level="info">    Example: easyant skeleton:create -Dskeleton.org=${skeleton.org} -Dskeleton.module=${skeleton.module} -Dskeleton.rev=${skeleton.rev} -Dproject.org=org.mycompany -Dproject.module=myproject -Dproject.ref=0.1</echo>
+            </ac:then>
+            <ac:else>
+                <echo level="info">    Example: easyant skeleton:create -Dskeleton.org=foo -Dskeleton.module=bar-skeleton -Dskeleton.rev=0.1 -Dproject.org=org.mycompany -Dproject.module=myproject -Dproject.ref=0.1</echo>
+            </ac:else>
+        </ac:if>
     </target>
 
     <target name="-check-generate" if="skeleton.is.interactive">
@@ -77,7 +77,7 @@
     </target>
    
     <target name="-select" depends="validate" if="skeleton.is.interactive">
-    	<echo>Choose a skeleton in the following list:</echo>
+        <echo>Choose a skeleton in the following list:</echo>
         <ea:searchmodule organisation="org.apache.easyant.skeletons" module="*" revision="*" propertyprefix="skeleton" settingsRef="easyant.ivy.instance"/>
     </target>
    
@@ -108,10 +108,10 @@
         <!-- Unzip the project skeleton -->
         <echo>Unzipping project skeleton to ${skeleton.target.dir}</echo>
         <unjar dest="${skeleton.target.dir}" src="${skeleton.download.artifact}">
-        	<patternset>
-        		<exclude name="META-INF/**"/>
-        	</patternset>
-    	</unjar>
+            <patternset>
+                <exclude name="META-INF/**"/>
+            </patternset>
+        </unjar>
        
         <filterset id="skeleton.create.replace.filter">
             <filter token="project.module" value="${project.module}" />
@@ -148,24 +148,24 @@
         <echo>Cleaning your ${skeleton.download.artifact} directory</echo>
         <delete file="${skeleton.download.artifact}"/>
     </target>
-	
-	<target name="-newplugin">
-		<property name="skeleton.org" value="org.apache.easyant.skeletons"/>
-		<property name="skeleton.module" value="std-ant-plugin"/>
-		<property name="skeleton.rev" value="latest.integration"/>
-		<property name="project.default.organisation" value="org.apache.easyant.plugins"/>
-	</target>
-	
-	<target name=":newplugin" depends="-newplugin,:generate" description="create a new easyant plugin"/>
-
-	<target name="-newskeleton">
-		<property name="skeleton.org" value="org.apache.easyant.skeletons"/>
-		<property name="skeleton.module" value="std-skeleton"/>
-		<property name="skeleton.rev" value="latest.integration"/>
-		<property name="project.default.organisation" value="org.apache.easyant.skeletons"/>
-	</target>
-	
-	<target name=":newskeleton" depends="-newskeleton,:generate" description="create a new skeleton"/>
-	
+    
+    <target name="-newplugin">
+        <property name="skeleton.org" value="org.apache.easyant.skeletons"/>
+        <property name="skeleton.module" value="std-ant-plugin"/>
+        <property name="skeleton.rev" value="latest.integration"/>
+        <property name="project.default.organisation" value="org.apache.easyant.plugins"/>
+    </target>
+    
+    <target name=":newplugin" depends="-newplugin,:generate" description="create a new easyant plugin"/>
+
+    <target name="-newskeleton">
+        <property name="skeleton.org" value="org.apache.easyant.skeletons"/>
+        <property name="skeleton.module" value="std-skeleton"/>
+        <property name="skeleton.rev" value="latest.integration"/>
+        <property name="project.default.organisation" value="org.apache.easyant.skeletons"/>
+    </target>
+    
+    <target name=":newskeleton" depends="-newskeleton,:generate" description="create a new skeleton"/>
+    
     <target name="doit" depends="validate" />
-</project>
\ No newline at end of file
+</project>

Modified: incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/skeleton/0.2/skeleton.ivy
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/skeleton/0.2/skeleton.ivy?rev=1073371&r1=1073370&r2=1073371&view=diff
==============================================================================
--- incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/skeleton/0.2/skeleton.ivy (original)
+++ incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/skeleton/0.2/skeleton.ivy Tue Feb 22 15:55:55 2011
@@ -15,13 +15,13 @@
    limitations under the License.
 -->
 <ivy-module version="2.0"> 
-	<info organisation="org.apache.easyant.plugins"
-	       module="skeleton"
-	       status="milestone"
-	       revision="0.2">
-	       <description>This modules provides targets to create projects from skeletons.</description>
-	</info>
-	<publications>
-		<artifact type="ant" />
-	</publications>
+    <info organisation="org.apache.easyant.plugins"
+           module="skeleton"
+           status="milestone"
+           revision="0.2">
+           <description>This modules provides targets to create projects from skeletons.</description>
+    </info>
+    <publications>
+        <artifact type="ant" />
+    </publications>
 </ivy-module>

Modified: incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/source-jar/0.1/source-jar.ant
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/source-jar/0.1/source-jar.ant?rev=1073371&r1=1073370&r2=1073371&view=diff
==============================================================================
--- incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/source-jar/0.1/source-jar.ant (original)
+++ incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/source-jar/0.1/source-jar.ant Tue Feb 22 15:55:55 2011
@@ -16,60 +16,60 @@
 -->
 <project name="org.apache.easyant.plugins#source-jar" xmlns:ea="antlib:org.apache.easyant">
 
-	<ea:core-version requiredrevision="[0.8,+]" />
-	
-	<target name=":init" phase="validate">
-		<ea:parameter phase="validate" />
-		<ea:parameter phase="package" />
-
-		<ea:parameter property="target.artifacts.main.source.jar.name" default="${module.name}-sources.jar" description="main source artifact file name" />
-
-		<ea:parameter property="target.artifacts.test.source.jar.name" default="${module.name}-test-sources.jar" description="test source artifact file name" />
-		<ea:parameter property="target.artifacts" required="true" description="destination directory for target artifacts"/>
-
-
-		<ea:parameter property="src.main.java" required="true" description="directory where main java files are stored" />
-		<ea:parameter property="src.test.java" required="true" description="directory where test java files are stored" />
-
-		<ea:parameter property="src.main.resources" required="true" description="directory where main resources files are stored" />
-		<ea:parameter property="src.test.resources" required="true" description="directory where test resources files are stored" />
-
-		<condition property="has.src.main">
-			<or>
-				<available file="${src.main.java}" />
-				<available file="${src.main.resources}" />
-			</or>
-		</condition>
-
-		<condition property="has.src.test">
-			<or>
-				<available file="${src.test.java}" />
-				<available file="${src.test.resources}" />
-			</or>
-		</condition>
-	</target>
-
-	<!-- Main Sources -->
-
-	<target name=":main" depends="validate" description="package main source as a JAR" if="has.src.main" unless="skip.source">
-		<mkdir dir="${target.artifacts}" />
-		<jar destfile="${target.artifacts}/${target.artifacts.main.source.jar.name}">
-			<fileset dir="${src.main.resources}" erroronmissingdir="false" />
-			<fileset dir="${src.main.java}" erroronmissingdir="false" />
-		</jar>
-		<ea:registerartifact type="source" ext="jar" classifier="sources" settingsRef="${project.ivy.instance}"/>
-	</target>
-
-	<!-- Test sources -->
-
-	<target name=":test" depends="validate" description="package test source as a JAR" if="has.src.test" unless="skip.source">
-		<mkdir dir="${target.artifacts}" />
-		<jar destfile="${target.artifacts}/${target.artifacts.test.source.jar.name}">
-			<fileset dir="${src.test.resources}" erroronmissingdir="false" />
-			<fileset dir="${src.test.java}" erroronmissingdir="false" />
-		</jar>
-		<ea:registerartifact type="test-source" ext="jar" classifier="test-sources" settingsRef="${project.ivy.instance}"/>
-	</target>
+    <ea:core-version requiredrevision="[0.8,+]" />
+    
+    <target name=":init" phase="validate">
+        <ea:parameter phase="validate" />
+        <ea:parameter phase="package" />
+
+        <ea:parameter property="target.artifacts.main.source.jar.name" default="${module.name}-sources.jar" description="main source artifact file name" />
+
+        <ea:parameter property="target.artifacts.test.source.jar.name" default="${module.name}-test-sources.jar" description="test source artifact file name" />
+        <ea:parameter property="target.artifacts" required="true" description="destination directory for target artifacts"/>
+
+
+        <ea:parameter property="src.main.java" required="true" description="directory where main java files are stored" />
+        <ea:parameter property="src.test.java" required="true" description="directory where test java files are stored" />
+
+        <ea:parameter property="src.main.resources" required="true" description="directory where main resources files are stored" />
+        <ea:parameter property="src.test.resources" required="true" description="directory where test resources files are stored" />
+
+        <condition property="has.src.main">
+            <or>
+                <available file="${src.main.java}" />
+                <available file="${src.main.resources}" />
+            </or>
+        </condition>
+
+        <condition property="has.src.test">
+            <or>
+                <available file="${src.test.java}" />
+                <available file="${src.test.resources}" />
+            </or>
+        </condition>
+    </target>
+
+    <!-- Main Sources -->
+
+    <target name=":main" depends="validate" description="package main source as a JAR" if="has.src.main" unless="skip.source">
+        <mkdir dir="${target.artifacts}" />
+        <jar destfile="${target.artifacts}/${target.artifacts.main.source.jar.name}">
+            <fileset dir="${src.main.resources}" erroronmissingdir="false" />
+            <fileset dir="${src.main.java}" erroronmissingdir="false" />
+        </jar>
+        <ea:registerartifact type="source" ext="jar" classifier="sources" settingsRef="${project.ivy.instance}"/>
+    </target>
+
+    <!-- Test sources -->
+
+    <target name=":test" depends="validate" description="package test source as a JAR" if="has.src.test" unless="skip.source">
+        <mkdir dir="${target.artifacts}" />
+        <jar destfile="${target.artifacts}/${target.artifacts.test.source.jar.name}">
+            <fileset dir="${src.test.resources}" erroronmissingdir="false" />
+            <fileset dir="${src.test.java}" erroronmissingdir="false" />
+        </jar>
+        <ea:registerartifact type="test-source" ext="jar" classifier="test-sources" settingsRef="${project.ivy.instance}"/>
+    </target>
 
-	<target name="doit" depends=":main" />
+    <target name="doit" depends=":main" />
 </project>

Modified: incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/source-jar/0.1/source-jar.ivy
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/source-jar/0.1/source-jar.ivy?rev=1073371&r1=1073370&r2=1073371&view=diff
==============================================================================
--- incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/source-jar/0.1/source-jar.ivy (original)
+++ incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/source-jar/0.1/source-jar.ivy Tue Feb 22 15:55:55 2011
@@ -15,37 +15,37 @@
    limitations under the License.
 -->
 <ivy-module version="2.0"> 
-	<info organisation="org.apache.easyant.plugins"
-	       module="source-jar"
-	       status="milestone"
-	       revision="0.1">
-	       <description>
-	       		<p>This module provides source jar packaging feature.</p>
-	       		
-	       		<p>
-	       			You can bind targets of this plugin to package phase by using bindtarget element in your module.ivy file.
-	       			Example : 
-	       			<code type="xml">
-	       				<plugin name="source-jar" rev="0.1" as="source-jar"/>
-		       			<!-- for main sources -->
-		       			<bindtarget target="source-jar:main" tophase="package"/>
-		       			<!-- for test sources -->
-		       			<bindtarget target="source-jar:test" tophase="package"/>
-		       		</code>
-		       		Or as a nested element of the plugin
-		       		<code type="xml">
-	       				<plugin name="source-jar" rev="0.1" as="source-jar">
-	       					<!-- here, the target prefix is not mandatory as easyant can determine it from plugin element -->
-			       			<!-- for main sources -->
-			       			<bindtarget target=":main" tophase="package"/>
-			       			<!-- for test sources -->
-			       			<bindtarget target=":test:test" tophase="package"/>
-	       				</plugin>
-		       		</code>
-	       		</p>
-	       	</description>
-	</info>
-	<publications>
-		<artifact type="ant" />
-	</publications>
+    <info organisation="org.apache.easyant.plugins"
+           module="source-jar"
+           status="milestone"
+           revision="0.1">
+           <description>
+                <p>This module provides source jar packaging feature.</p>
+                
+                <p>
+                    You can bind targets of this plugin to package phase by using bindtarget element in your module.ivy file.
+                    Example : 
+                    <code type="xml">
+                        <plugin name="source-jar" rev="0.1" as="source-jar"/>
+                        <!-- for main sources -->
+                        <bindtarget target="source-jar:main" tophase="package"/>
+                        <!-- for test sources -->
+                        <bindtarget target="source-jar:test" tophase="package"/>
+                    </code>
+                    Or as a nested element of the plugin
+                    <code type="xml">
+                        <plugin name="source-jar" rev="0.1" as="source-jar">
+                            <!-- here, the target prefix is not mandatory as easyant can determine it from plugin element -->
+                            <!-- for main sources -->
+                            <bindtarget target=":main" tophase="package"/>
+                            <!-- for test sources -->
+                            <bindtarget target=":test:test" tophase="package"/>
+                        </plugin>
+                    </code>
+                </p>
+            </description>
+    </info>
+    <publications>
+        <artifact type="ant" />
+    </publications>
 </ivy-module>

Modified: incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/test-junit/0.2/test-junit.ant
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/test-junit/0.2/test-junit.ant?rev=1073371&r1=1073370&r2=1073371&view=diff
==============================================================================
--- incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/test-junit/0.2/test-junit.ant (original)
+++ incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/test-junit/0.2/test-junit.ant Tue Feb 22 15:55:55 2011
@@ -15,54 +15,54 @@
    limitations under the License.
 -->
 <project name="org.apache.easyant.plugins#test-junit"
-	xmlns:ea="antlib:org.apache.easyant">
+    xmlns:ea="antlib:org.apache.easyant">
 
-	<ea:core-version requiredrevision="[0.8,+]" />
+    <ea:core-version requiredrevision="[0.8,+]" />
 
-	<ea:include mrid="org.apache.easyant.plugins#abstract-test;0.1" as=":abstract-junit-test"/>
+    <ea:include mrid="org.apache.easyant.plugins#abstract-test;0.1" as=":abstract-junit-test"/>
     <ea:include mrid="org.apache.easyant.plugins#antcontrib-activator;0.1" as=":ac"/>
 
-	<target name="/skip" description="skip tests">
-		<property name="skip.test" value="true" />
-		<property name="skip.test.integration" value="true" />
-	</target>
-
-	<target name=":init" phase="validate" depends=":abstract-junit-test:init">
-		<ea:parameter phase="validate" />
-		<ea:parameter phase="test" />
-		<ea:parameter phase="integration-test" />
-
-		<ea:parameter property="test.run.includes.pattern" 
-			default="**/*" description="Pattern describing class files included in test run" /> 
-		<ea:parameter property="test.run.excludes.pattern" 
-			default="" description="Pattern describing class files excluded in test run" />
-		
-		<ea:parameter property="test.integration.run.includes.pattern" 
-			default="**/*" description="Pattern describing class files included in integration test run" /> 
-		<ea:parameter property="test.integration.run.excludes.pattern" 
-			default="" description="Pattern describing class files excluded in integration test run" />
-
-		<ea:parameter property="test.run.forkmode"
-			default="perTest" description="The forkmode for junit tests; 'perTest' or 'once'"/>
-		<ea:parameter property="test.run.fork"
-			default="true" description="Run the tests in a separate VM. (true/false)"/>
-		<ea:parameter property="test.run.jvmargs"
-			default="" description="Extra parameters to pass to the test JVM, for example to enable debugging"/>
-	
-		<ea:parameter property="test.integration.run.forkmode"
-			default="perTest" description="The forkmode for junit integration tests; 'perTest' or 'once'"/>
-		<ea:parameter property="test.integration.run.fork"
-			default="true" description="Run integration tests in a separate VM. (true/false)"/>
-		<ea:parameter property="test.integration.run.jvmargs"
-			default="" description="Extra parameters to pass to the integration test JVM, for example to enable debugging"/>
-		
-		
-		<ea:parameter property="target.test.xml" required="true" 
-			description="Directory were xml test reports will be generated"/>
-		<ea:parameter property="test.run.dir"
-			default="${basedir}" description="working directory for unit test process, defaults to the project basedir"/>
-		<ea:parameter property="test.integration.run.dir"
-			default="${basedir}" description="working directory for integration test process, defaults to the project basedir"/>
+    <target name="/skip" description="skip tests">
+        <property name="skip.test" value="true" />
+        <property name="skip.test.integration" value="true" />
+    </target>
+
+    <target name=":init" phase="validate" depends=":abstract-junit-test:init">
+        <ea:parameter phase="validate" />
+        <ea:parameter phase="test" />
+        <ea:parameter phase="integration-test" />
+
+        <ea:parameter property="test.run.includes.pattern" 
+            default="**/*" description="Pattern describing class files included in test run" /> 
+        <ea:parameter property="test.run.excludes.pattern" 
+            default="" description="Pattern describing class files excluded in test run" />
+        
+        <ea:parameter property="test.integration.run.includes.pattern" 
+            default="**/*" description="Pattern describing class files included in integration test run" /> 
+        <ea:parameter property="test.integration.run.excludes.pattern" 
+            default="" description="Pattern describing class files excluded in integration test run" />
+
+        <ea:parameter property="test.run.forkmode"
+            default="perTest" description="The forkmode for junit tests; 'perTest' or 'once'"/>
+        <ea:parameter property="test.run.fork"
+            default="true" description="Run the tests in a separate VM. (true/false)"/>
+        <ea:parameter property="test.run.jvmargs"
+            default="" description="Extra parameters to pass to the test JVM, for example to enable debugging"/>
+    
+        <ea:parameter property="test.integration.run.forkmode"
+            default="perTest" description="The forkmode for junit integration tests; 'perTest' or 'once'"/>
+        <ea:parameter property="test.integration.run.fork"
+            default="true" description="Run integration tests in a separate VM. (true/false)"/>
+        <ea:parameter property="test.integration.run.jvmargs"
+            default="" description="Extra parameters to pass to the integration test JVM, for example to enable debugging"/>
+        
+        
+        <ea:parameter property="target.test.xml" required="true" 
+            description="Directory were xml test reports will be generated"/>
+        <ea:parameter property="test.run.dir"
+            default="${basedir}" description="working directory for unit test process, defaults to the project basedir"/>
+        <ea:parameter property="test.integration.run.dir"
+            default="${basedir}" description="working directory for integration test process, defaults to the project basedir"/>
 
         <ea:parameter property="test.scan.path" default="false"
                       description="if true, the full test classpath will be scanned for additional test cases to run"/>
@@ -74,7 +74,7 @@
         <ea:parameter property="test.integration.jar.pattern" default=".*-test.jar"
                       description="when test.scan.path is enabled, identifies which jars should be examined for test cases"/>
 
-		<ea:path pathid="run.test.classpath" overwrite="append-if-not-exist">
+        <ea:path pathid="run.test.classpath" overwrite="append-if-not-exist">
             <pathelement location="${target.test.classes}" />
             <path refid="compile.test.classpath" />
         </ea:path>
@@ -84,7 +84,7 @@
             <path refid="compile.test.classpath" />
         </ea:path>
 
-	</target>
+    </target>
 
     <macrodef name="compute-test-path" description="Compute the set of test cases to run.">
         <attribute name="prefix" description="one of 'test' or 'test.integration'"/>
@@ -147,38 +147,38 @@
 
         </sequential>
     </macrodef>
-	
-	<macrodef name="junit-test">
-		<attribute name="prefix"/>
-		<sequential>
-			<mkdir dir="${target.test.xml}" />
-			<mkdir dir="${@{prefix}.run.dir}"/>
-			
-	        <junit
-	           haltonfailure="off"
-	           haltonerror="off"
-	           errorproperty="@{prefix}.failed"
-	           failureproperty="@{prefix}.failed"
-	           showoutput="no"
-	           printsummary="yes"
-	           includeantruntime="yes"
-	           dir="${@{prefix}.run.dir}"
-	           fork="${@{prefix}.run.fork}" forkmode="${@{prefix}.run.forkmode}">
-
-				<jvmarg line="${@{prefix}.run.jvmargs}"/>
-
-	            <classpath>
-	                <path refid="run.@{prefix}.classpath" />
-	            </classpath>
-	            
-	            <formatter type="xml"/>
-	            <batchtest todir="${target.test.xml}">
-	            	<resources refid="target.@{prefix}.set"/>
-	            </batchtest>
-	        </junit>
+    
+    <macrodef name="junit-test">
+        <attribute name="prefix"/>
+        <sequential>
+            <mkdir dir="${target.test.xml}" />
+            <mkdir dir="${@{prefix}.run.dir}"/>
+            
+            <junit
+               haltonfailure="off"
+               haltonerror="off"
+               errorproperty="@{prefix}.failed"
+               failureproperty="@{prefix}.failed"
+               showoutput="no"
+               printsummary="yes"
+               includeantruntime="yes"
+               dir="${@{prefix}.run.dir}"
+               fork="${@{prefix}.run.fork}" forkmode="${@{prefix}.run.forkmode}">
+
+                <jvmarg line="${@{prefix}.run.jvmargs}"/>
+
+                <classpath>
+                    <path refid="run.@{prefix}.classpath" />
+                </classpath>
+                
+                <formatter type="xml"/>
+                <batchtest todir="${target.test.xml}">
+                    <resources refid="target.@{prefix}.set"/>
+                </batchtest>
+            </junit>
 
-		</sequential>
-	</macrodef>
+        </sequential>
+    </macrodef>
 
     <target name="-compute-test-sets" depends="test-compile" description="compute the set of test cases to run">
 
@@ -192,31 +192,31 @@
 
     </target>
 
-	<target name="-test" depends="-compute-test-sets" unless="skip.test">
-		<junit-test prefix="test"/>
+    <target name="-test" depends="-compute-test-sets" unless="skip.test">
+        <junit-test prefix="test"/>
     </target>
 
-	<target name="-integration-test" depends="-compute-test-sets" unless="skip.test.integration">
-		<junit-test prefix="test.integration"/>
-	</target>
-	
-	<target name=":run" if="test.mode.run" unless="skip.test" depends="-test"
-		 phase="test" description="run junit tests">
-		<check-test-result propertytocheck="test.failed" 
-			message="At least one test has failed. See logs in ${target.test.xml} for details or use the report target to run the test with a report"/>
-	</target>
-
-	<target name=":run-integration" if="test.mode.run" unless="skip.test.integration" depends="-integration-test"
-		 phase="integration-test" description="run junit integration tests">
-		<check-test-result propertytocheck="test.integration.failed"
-			message="At least one integration test has failed. See logs in ${target.test.xml} for details or use the report target to run the test with a report" />
-	</target>
+    <target name="-integration-test" depends="-compute-test-sets" unless="skip.test.integration">
+        <junit-test prefix="test.integration"/>
+    </target>
+    
+    <target name=":run" if="test.mode.run" unless="skip.test" depends="-test"
+         phase="test" description="run junit tests">
+        <check-test-result propertytocheck="test.failed" 
+            message="At least one test has failed. See logs in ${target.test.xml} for details or use the report target to run the test with a report"/>
+    </target>
+
+    <target name=":run-integration" if="test.mode.run" unless="skip.test.integration" depends="-integration-test"
+         phase="integration-test" description="run junit integration tests">
+        <check-test-result propertytocheck="test.integration.failed"
+            message="At least one integration test has failed. See logs in ${target.test.xml} for details or use the report target to run the test with a report" />
+    </target>
 
     <target name=":report" if="test.mode.report" unless="skip.test" depends="-test,-integration-test"
-    	 phase="report" description="generate junit report">
+         phase="report" description="generate junit report">
         <junitreport todir="${target.test.xml}">
             <fileset dir="${target.test.xml}">
-            	<include name="TEST-*.xml" />
+                <include name="TEST-*.xml" />
             </fileset>
             <report format="frames" todir="${target.test.html}" />
         </junitreport>
@@ -225,7 +225,7 @@
         <fail if="test.integration.failed"
               message="At least one integration test has failed. See logs in ${target.test.xml} or report in ${target.test.html}" />
     </target>
-	
-	<target name=":doit" depends=":run, :run-integration, :report" />
+    
+    <target name=":doit" depends=":run, :run-integration, :report" />
 
 </project>

Modified: incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/test-junit/0.2/test-junit.ivy
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/test-junit/0.2/test-junit.ivy?rev=1073371&r1=1073370&r2=1073371&view=diff
==============================================================================
--- incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/test-junit/0.2/test-junit.ivy (original)
+++ incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/test-junit/0.2/test-junit.ivy Tue Feb 22 15:55:55 2011
@@ -15,15 +15,15 @@
    limitations under the License.
 -->
 <ivy-module version="2.0"> 
-	<info organisation="org.apache.easyant.plugins"
-	       module="test-junit"
-	       status="milestone"
-	       revision="0.2">
-	       <description>This module provides junit tests compilation and execution feature.<br/>
+    <info organisation="org.apache.easyant.plugins"
+           module="test-junit"
+           status="milestone"
+           revision="0.2">
+           <description>This module provides junit tests compilation and execution feature.<br/>
 This module extends abstract-test module.</description>
-	</info>
-	<publications>
-		<artifact type="ant" />
-	</publications>
-	
+    </info>
+    <publications>
+        <artifact type="ant" />
+    </publications>
+    
 </ivy-module>

Modified: incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/test-testng/0.2/test-testng.ant
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/test-testng/0.2/test-testng.ant?rev=1073371&r1=1073370&r2=1073371&view=diff
==============================================================================
--- incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/test-testng/0.2/test-testng.ant (original)
+++ incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/test-testng/0.2/test-testng.ant Tue Feb 22 15:55:55 2011
@@ -15,23 +15,23 @@
    limitations under the License.
 -->
 <project name="org.apache.easyant.plugins#test-testng"
-	xmlns:ea="antlib:org.apache.easyant">
+    xmlns:ea="antlib:org.apache.easyant">
 
-	<ea:core-version requiredrevision="[0.8,+]" />
-	
-	<ea:include mrid="org.apache.easyant.plugins#abstract-test;0.1" as=":abstract-testng-test"/>
-
-	<target name="/skip" description="skip tests">
-		<property name="skip.test" value="true" />
-		<property name="skip.test.integration" value="true" />
-	</target>
-	
-	<target name=":init" phase="validate" depends=":abstract-testng-test:init">
-		<ea:parameter phase="validate" />
-		<ea:parameter phase="test" />
-		<ea:parameter phase="integration-test" />
-				
-		<ea:parameter property="testng.filename" description="testng configuration filename" default="testng.xml"/>
+    <ea:core-version requiredrevision="[0.8,+]" />
+    
+    <ea:include mrid="org.apache.easyant.plugins#abstract-test;0.1" as=":abstract-testng-test"/>
+
+    <target name="/skip" description="skip tests">
+        <property name="skip.test" value="true" />
+        <property name="skip.test.integration" value="true" />
+    </target>
+    
+    <target name=":init" phase="validate" depends=":abstract-testng-test:init">
+        <ea:parameter phase="validate" />
+        <ea:parameter phase="test" />
+        <ea:parameter phase="integration-test" />
+                
+        <ea:parameter property="testng.filename" description="testng configuration filename" default="testng.xml"/>
 
         <ea:path pathid="run.test.classpath" overwrite="append-if-not-exist">
             <pathelement location="${target.test.classes}" />
@@ -42,73 +42,73 @@
             <pathelement location="${target.test.integration.classes}" />
             <path refid="compile.test.classpath" />
         </ea:path>
-		
-		<condition property="skip.test">
-			<not><isset property="has.src.test.java"/></not>
-		</condition>
-
-		<condition property="skip.test.integration">
-			<not><isset property="has.src.test.integration.java"/></not>
-		</condition>
-
-	</target>
-	
-	<target name="-load" depends="provision">
-		<available property="testng.available" classname="org.testng.TestNGAntTask">
-				<classpath refid="run.test.classpath" />
-			</available>
-
-			<fail unless="testng.available" message="Testng is unavailable, perhaps you forget to add testng in you project dependencies."/>
-			<taskdef name="testng" classname="com.beust.testng.TestNGAntTask">
-						<classpath refid="run.test.classpath" />
-			</taskdef>
-	</target>
-	
-	<macrodef name="testng-test">
-		<attribute name="prefix"/>
-		<sequential>
-			<mkdir dir="${target.test.xml}" />
-			<!-- Xml and HTML file will be generated in target.test.xml -->
-			<testng outputDir="${target.test.xml}"
-				   haltonfailure="off"
-		           failureproperty="@{prefix}.failed">
-				<classpath refid="run.@{prefix}.classpath" />
-				<xmlfileset dir="${target.@{prefix}.classes}" includes="${testng.filename}" />
-				<!-- Alternative way to launch testng, maybe this could be an alternative target? -->
-				<!--
-							<classfileset dir="${build.test.dir}" includes="**/*.class" />
-				-->
-			</testng>
-		</sequential>
-	</macrodef>
-	
-	<target name="-test" depends="test-compile,-load" unless="skip.test">
-		<testng-test prefix="test"/>
         
-	</target>	
+        <condition property="skip.test">
+            <not><isset property="has.src.test.java"/></not>
+        </condition>
+
+        <condition property="skip.test.integration">
+            <not><isset property="has.src.test.integration.java"/></not>
+        </condition>
+
+    </target>
+    
+    <target name="-load" depends="provision">
+        <available property="testng.available" classname="org.testng.TestNGAntTask">
+                <classpath refid="run.test.classpath" />
+            </available>
+
+            <fail unless="testng.available" message="Testng is unavailable, perhaps you forget to add testng in you project dependencies."/>
+            <taskdef name="testng" classname="com.beust.testng.TestNGAntTask">
+                        <classpath refid="run.test.classpath" />
+            </taskdef>
+    </target>
+    
+    <macrodef name="testng-test">
+        <attribute name="prefix"/>
+        <sequential>
+            <mkdir dir="${target.test.xml}" />
+            <!-- Xml and HTML file will be generated in target.test.xml -->
+            <testng outputDir="${target.test.xml}"
+                   haltonfailure="off"
+                   failureproperty="@{prefix}.failed">
+                <classpath refid="run.@{prefix}.classpath" />
+                <xmlfileset dir="${target.@{prefix}.classes}" includes="${testng.filename}" />
+                <!-- Alternative way to launch testng, maybe this could be an alternative target? -->
+                <!--
+                            <classfileset dir="${build.test.dir}" includes="**/*.class" />
+                -->
+            </testng>
+        </sequential>
+    </macrodef>
+    
+    <target name="-test" depends="test-compile,-load" unless="skip.test">
+        <testng-test prefix="test"/>
+        
+    </target>   
 
-	<target name="-integration-test" depends="test-compile,-load" unless="skip.test.integration">
-		<testng-test prefix="test.integration"/>
-	</target>	
-
-	
-	<target name=":run" if="test.mode.run" unless="skip.test" depends="-test"
-			 phase="test" description="run testng tests">
-		<check-test-result propertytocheck="test.failed"
+    <target name="-integration-test" depends="test-compile,-load" unless="skip.test.integration">
+        <testng-test prefix="test.integration"/>
+    </target>   
+
+    
+    <target name=":run" if="test.mode.run" unless="skip.test" depends="-test"
+             phase="test" description="run testng tests">
+        <check-test-result propertytocheck="test.failed"
               message="At least one test has failed. See logs in ${target.test.xml} for details or use the report target to run the test with a report" />
-	</target>	
+    </target>   
 
-	<target name=":run-integration" if="test.mode.run" unless="skip.test.integration" depends="-integration-test"
-				 phase="integration-test" description="run testng integration tests">
-		<check-test-result propertytocheck="test.integration.failed"
+    <target name=":run-integration" if="test.mode.run" unless="skip.test.integration" depends="-integration-test"
+                 phase="integration-test" description="run testng integration tests">
+        <check-test-result propertytocheck="test.integration.failed"
               message="At least one integration test has failed. See logs in ${target.test.xml} for details or use the report target to run the test with a report" />
-	</target>	
-	
+    </target>   
+    
     <target name=":report" if="test.mode.report" unless="skip.test" depends="-test,-integration-test"
-    	 phase="report" description="generate testng reports">
+         phase="report" description="generate testng reports">
         <junitreport todir="${target.test.xml}">
             <fileset dir="${target.test.xml}">
-            	<include name="TEST-*.xml" />
+                <include name="TEST-*.xml" />
             </fileset>
             <report format="frames" todir="${target.test.html}" />
         </junitreport>
@@ -117,6 +117,6 @@
         <fail if="test.integration.failed"
               message="At least one integration test has failed. See logs in ${target.test.xml} or report in ${target.test.html}" />
     </target>
-	
+    
     <target name=":doit" depends=":run, :run-integration, :report" />
 </project>

Modified: incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/test-testng/0.2/test-testng.ivy
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/test-testng/0.2/test-testng.ivy?rev=1073371&r1=1073370&r2=1073371&view=diff
==============================================================================
--- incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/test-testng/0.2/test-testng.ivy (original)
+++ incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.plugins/test-testng/0.2/test-testng.ivy Tue Feb 22 15:55:55 2011
@@ -15,14 +15,14 @@
    limitations under the License.
 -->
 <ivy-module version="2.0"> 
-	<info organisation="org.apache.easyant.plugins"
-	       module="test-testng"
-	       status="milestone"
-	       revision="0.2">
-	       <description>This module provides testng tests compilation and execution feature.<br/>
+    <info organisation="org.apache.easyant.plugins"
+           module="test-testng"
+           status="milestone"
+           revision="0.2">
+           <description>This module provides testng tests compilation and execution feature.<br/>
 This module extends abstract-test module.</description>
-	</info>
-	<publications>
-		<artifact type="ant" />
-	</publications>
+    </info>
+    <publications>
+        <artifact type="ant" />
+    </publications>
 </ivy-module>

Modified: incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.skeletons/std-ant-plugin/0.1/std-ant-plugin.ivy
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.skeletons/std-ant-plugin/0.1/std-ant-plugin.ivy?rev=1073371&r1=1073370&r2=1073371&view=diff
==============================================================================
--- incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.skeletons/std-ant-plugin/0.1/std-ant-plugin.ivy (original)
+++ incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.skeletons/std-ant-plugin/0.1/std-ant-plugin.ivy Tue Feb 22 15:55:55 2011
@@ -15,8 +15,8 @@
    limitations under the License.
 -->
 <ivy-module version="2.0" xmlns:ea="http://www.easyant.org"> 
-	<info organisation="org.apache.easyant.skeletons" module="std-ant-plugin" revision="0.1" status="release" publication="20100619132715">
-		<description>Skeleton for creating ant based plugin for easyant</description>
-		<ea:build module="build-std-skeleton" revision="0.1"/>
-	</info>
+    <info organisation="org.apache.easyant.skeletons" module="std-ant-plugin" revision="0.1" status="release" publication="20100619132715">
+        <description>Skeleton for creating ant based plugin for easyant</description>
+        <ea:build module="build-std-skeleton" revision="0.1"/>
+    </info>
 </ivy-module>

Modified: incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.skeletons/std-java-application/0.1/std-java-application.ivy
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.skeletons/std-java-application/0.1/std-java-application.ivy?rev=1073371&r1=1073370&r2=1073371&view=diff
==============================================================================
--- incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.skeletons/std-java-application/0.1/std-java-application.ivy (original)
+++ incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.skeletons/std-java-application/0.1/std-java-application.ivy Tue Feb 22 15:55:55 2011
@@ -15,8 +15,8 @@
    limitations under the License.
 -->
 <ivy-module version="2.0" xmlns:ea="http://www.easyant.org"> 
-	<info organisation="org.apache.easyant.skeletons" module="std-java-application" revision="0.1" status="release" publication="20100619132651">
-		<description>Skeleton for creating standard java application</description>
-		<ea:build module="build-std-skeleton" revision="0.1"/>
-	</info>
+    <info organisation="org.apache.easyant.skeletons" module="std-java-application" revision="0.1" status="release" publication="20100619132651">
+        <description>Skeleton for creating standard java application</description>
+        <ea:build module="build-std-skeleton" revision="0.1"/>
+    </info>
 </ivy-module>

Modified: incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.skeletons/std-java-webapplication/0.1/std-java-webapplication.ivy
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.skeletons/std-java-webapplication/0.1/std-java-webapplication.ivy?rev=1073371&r1=1073370&r2=1073371&view=diff
==============================================================================
--- incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.skeletons/std-java-webapplication/0.1/std-java-webapplication.ivy (original)
+++ incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.skeletons/std-java-webapplication/0.1/std-java-webapplication.ivy Tue Feb 22 15:55:55 2011
@@ -15,8 +15,8 @@
    limitations under the License.
 -->
 <ivy-module version="2.0" xmlns:ea="http://www.easyant.org"> 
-	<info organisation="org.apache.easyant.skeletons" module="std-java-webapplication" revision="0.1" status="release" publication="20100619132702">
-		<description>Skeleton for creating standard java web application</description>
-		<ea:build module="build-std-skeleton" revision="0.1"/>
-	</info>
+    <info organisation="org.apache.easyant.skeletons" module="std-java-webapplication" revision="0.1" status="release" publication="20100619132702">
+        <description>Skeleton for creating standard java web application</description>
+        <ea:build module="build-std-skeleton" revision="0.1"/>
+    </info>
 </ivy-module>

Modified: incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.skeletons/std-skeleton/0.1/std-skeleton.ivy
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.skeletons/std-skeleton/0.1/std-skeleton.ivy?rev=1073371&r1=1073370&r2=1073371&view=diff
==============================================================================
--- incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.skeletons/std-skeleton/0.1/std-skeleton.ivy (original)
+++ incubator/easyant/core/trunk/src/main/resources/org/apache/easyant/core/repository/modules/org.apache.easyant.skeletons/std-skeleton/0.1/std-skeleton.ivy Tue Feb 22 15:55:55 2011
@@ -15,8 +15,8 @@
    limitations under the License.
 -->
 <ivy-module version="2.0" xmlns:ea="http://www.easyant.org"> 
-	<info organisation="org.apache.easyant.skeletons" module="std-skeleton" revision="0.1" status="release" publication="20100624202621">
-		<description>Emtpy skeleton structure</description>
-		<ea:build module="build-std-skeleton" revision="0.1"/>
-	</info>
+    <info organisation="org.apache.easyant.skeletons" module="std-skeleton" revision="0.1" status="release" publication="20100624202621">
+        <description>Emtpy skeleton structure</description>
+        <ea:build module="build-std-skeleton" revision="0.1"/>
+    </info>
 </ivy-module>

Modified: incubator/easyant/core/trunk/src/test/antunit/common/test-utils.ant
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/src/test/antunit/common/test-utils.ant?rev=1073371&r1=1073370&r2=1073371&view=diff
==============================================================================
--- incubator/easyant/core/trunk/src/test/antunit/common/test-utils.ant (original)
+++ incubator/easyant/core/trunk/src/test/antunit/common/test-utils.ant Tue Feb 22 15:55:55 2011
@@ -17,7 +17,7 @@
 -->
 <project name="easyant-test-utils" xmlns:ea="antlib:org.apache.easyant">
 
-	<description>Macros and targets to assist in writing AntUnit test cases for EasyAnt</description>
+    <description>Macros and targets to assist in writing AntUnit test cases for EasyAnt</description>
 
     <dirname file="${ant.file.easyant-test-utils}" property="easyant.common.dir"/>
 
@@ -41,4 +41,4 @@
         </sequential>
     </macrodef>
 
-</project>
\ No newline at end of file
+</project>

Modified: incubator/easyant/core/trunk/src/test/antunit/org.apache.easyant.plugins/docbook/0.1/docbook-test.xml
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/src/test/antunit/org.apache.easyant.plugins/docbook/0.1/docbook-test.xml?rev=1073371&r1=1073370&r2=1073371&view=diff
==============================================================================
--- incubator/easyant/core/trunk/src/test/antunit/org.apache.easyant.plugins/docbook/0.1/docbook-test.xml (original)
+++ incubator/easyant/core/trunk/src/test/antunit/org.apache.easyant.plugins/docbook/0.1/docbook-test.xml Tue Feb 22 15:55:55 2011
@@ -25,31 +25,31 @@
 
     <load-plugin name="docbook" rev="0.1" as="db" repository="${extra.plugins.dir}"/>
 
-	<target name="clean" description="remove stale build artifacts before / after each test">
-		<delete dir="${basedir}" includeemptydirs="true">
-			<include name="**/target/**"/>
-			<include name="**/lib/**"/>
-		</delete>
-	</target>
-	
-	<target name="setUp" depends="clean"/>
-	<target name="tearDown" depends="clean"/>
+    <target name="clean" description="remove stale build artifacts before / after each test">
+        <delete dir="${basedir}" includeemptydirs="true">
+            <include name="**/target/**"/>
+            <include name="**/lib/**"/>
+        </delete>
+    </target>
+    
+    <target name="setUp" depends="clean"/>
+    <target name="tearDown" depends="clean"/>
 
-	<target name="testHtmlChunked"
+    <target name="testHtmlChunked"
             depends="db:generate"
             description="test generation of multi-page HTML documentation from docbook sources">
 
-		<!-- verify output -->
-		<au:assertFileExists message="documentation was created"
-							 file="${basedir}/target/documentation"/>
-
-		<au:assertFilesMatch message="TOC page created"
-							 expected="${basedir}/docbook-test/index.html"
-							 actual="${basedir}/target/documentation/html/index.html"/>
-		<au:assertFilesMatch message="chapter document created"
-							 expected="${basedir}/docbook-test/ch01.html"
-							 actual="${basedir}/target/documentation/html/ch01.html"/>
+        <!-- verify output -->
+        <au:assertFileExists message="documentation was created"
+                             file="${basedir}/target/documentation"/>
+
+        <au:assertFilesMatch message="TOC page created"
+                             expected="${basedir}/docbook-test/index.html"
+                             actual="${basedir}/target/documentation/html/index.html"/>
+        <au:assertFilesMatch message="chapter document created"
+                             expected="${basedir}/docbook-test/ch01.html"
+                             actual="${basedir}/target/documentation/html/ch01.html"/>
 
-	</target>
+    </target>
 
-</project>
\ No newline at end of file
+</project>

Modified: incubator/easyant/core/trunk/src/test/antunit/org.apache.easyant.plugins/docbook/0.1/docbook-test/ch01.html
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/src/test/antunit/org.apache.easyant.plugins/docbook/0.1/docbook-test/ch01.html?rev=1073371&r1=1073370&r2=1073371&view=diff
==============================================================================
--- incubator/easyant/core/trunk/src/test/antunit/org.apache.easyant.plugins/docbook/0.1/docbook-test/ch01.html (original)
+++ incubator/easyant/core/trunk/src/test/antunit/org.apache.easyant.plugins/docbook/0.1/docbook-test/ch01.html Tue Feb 22 15:55:55 2011
@@ -16,4 +16,4 @@
 -->
 <html><head>
       <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>Chapter&nbsp;1.&nbsp;A Chapter</title><meta name="generator" content="DocBook XSL Stylesheets V1.75.1"><link rel="home" href="index.html" title="EasyAnt DocBook Integration Test"><link rel="up" href="index.html" title="EasyAnt DocBook Integration Test"><link rel="prev" href="index.html" title="EasyAnt DocBook Integration Test"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&nbsp;1.&nbsp;A Chapter</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="index.html">Prev</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;</td></tr></table><hr></div><div class="chapter" title="Chapter&nbsp;1.&nbsp;A Chapter"><div class="titlepage"><div><div><h2 class="title"><a name="foo"></a>Chapter&nbsp;1.&nbsp;A Chapter</h2></div></div></div><p>Call me Ishmael.</p></div><div class=
 "navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="index.html">Prev</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;</td></tr><tr><td width="40%" align="left" valign="top">EasyAnt DocBook Integration Test&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;</td></tr></table></div></body></html>
\ No newline at end of file
+   <title>Chapter&nbsp;1.&nbsp;A Chapter</title><meta name="generator" content="DocBook XSL Stylesheets V1.75.1"><link rel="home" href="index.html" title="EasyAnt DocBook Integration Test"><link rel="up" href="index.html" title="EasyAnt DocBook Integration Test"><link rel="prev" href="index.html" title="EasyAnt DocBook Integration Test"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&nbsp;1.&nbsp;A Chapter</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="index.html">Prev</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;</td></tr></table><hr></div><div class="chapter" title="Chapter&nbsp;1.&nbsp;A Chapter"><div class="titlepage"><div><div><h2 class="title"><a name="foo"></a>Chapter&nbsp;1.&nbsp;A Chapter</h2></div></div></div><p>Call me Ishmael.</p></div><div class=
 "navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="index.html">Prev</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;</td></tr><tr><td width="40%" align="left" valign="top">EasyAnt DocBook Integration Test&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;</td></tr></table></div></body></html>

Modified: incubator/easyant/core/trunk/src/test/antunit/org.apache.easyant.plugins/docbook/0.1/docbook-test/index.html
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/src/test/antunit/org.apache.easyant.plugins/docbook/0.1/docbook-test/index.html?rev=1073371&r1=1073370&r2=1073371&view=diff
==============================================================================
--- incubator/easyant/core/trunk/src/test/antunit/org.apache.easyant.plugins/docbook/0.1/docbook-test/index.html (original)
+++ incubator/easyant/core/trunk/src/test/antunit/org.apache.easyant.plugins/docbook/0.1/docbook-test/index.html Tue Feb 22 15:55:55 2011
@@ -16,4 +16,4 @@
 -->
 <html><head>
       <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>EasyAnt DocBook Integration Test</title><meta name="generator" content="DocBook XSL Stylesheets V1.75.1"><link rel="home" href="index.html" title="EasyAnt DocBook Integration Test"><link rel="next" href="ch01.html" title="Chapter&nbsp;1.&nbsp;A Chapter"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">EasyAnt DocBook Integration Test</th></tr><tr><td width="20%" align="left">&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch01.html">Next</a></td></tr></table><hr></div><div class="book" title="EasyAnt DocBook Integration Test"><div class="titlepage"><div><div><h1 class="title"><a name="d0e1"></a>EasyAnt DocBook Integration Test</h1></div></div><hr></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="chapter"><a href="ch01.html">1. A Chapt
 er</a></span></dt></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left">&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch01.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right" valign="top">&nbsp;Chapter&nbsp;1.&nbsp;A Chapter</td></tr></table></div></body></html>
\ No newline at end of file
+   <title>EasyAnt DocBook Integration Test</title><meta name="generator" content="DocBook XSL Stylesheets V1.75.1"><link rel="home" href="index.html" title="EasyAnt DocBook Integration Test"><link rel="next" href="ch01.html" title="Chapter&nbsp;1.&nbsp;A Chapter"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">EasyAnt DocBook Integration Test</th></tr><tr><td width="20%" align="left">&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch01.html">Next</a></td></tr></table><hr></div><div class="book" title="EasyAnt DocBook Integration Test"><div class="titlepage"><div><div><h1 class="title"><a name="d0e1"></a>EasyAnt DocBook Integration Test</h1></div></div><hr></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="chapter"><a href="ch01.html">1. A Chapt
 er</a></span></dt></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left">&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch01.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right" valign="top">&nbsp;Chapter&nbsp;1.&nbsp;A Chapter</td></tr></table></div></body></html>

Modified: incubator/easyant/core/trunk/src/test/antunit/org.apache.easyant.plugins/docbook/0.1/module.ivy
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/src/test/antunit/org.apache.easyant.plugins/docbook/0.1/module.ivy?rev=1073371&r1=1073370&r2=1073371&view=diff
==============================================================================
--- incubator/easyant/core/trunk/src/test/antunit/org.apache.easyant.plugins/docbook/0.1/module.ivy (original)
+++ incubator/easyant/core/trunk/src/test/antunit/org.apache.easyant.plugins/docbook/0.1/module.ivy Tue Feb 22 15:55:55 2011
@@ -15,14 +15,14 @@
    limitations under the License.
 -->
 <ivy-module version="2.0" xmlns:ea="http://www.easyant.org"> 
-	<info organisation="org.apache.easyant" module="docbook-test" status="integration" >
-		<description>Tests the docbook plugin.</description>
-		<ea:plugin mrid="org.apache.easyant.plugins#phases-std;0.2"/>
-		<ea:plugin mrid="org.apache.easyant.plugins#docbook;0.1" as="docbook"/>
-	</info>
-	<configurations>
-		<conf name="default" visibility="public" description="runtime dependencies and master artifact can be used with this conf"/>
-		<conf name="test" visibility="private" description="this scope indicates that the dependency is not required for normal use of the application, and is only available for the test compilation and execution phases."/>
-	</configurations>
-	<dependencies/>
+    <info organisation="org.apache.easyant" module="docbook-test" status="integration" >
+        <description>Tests the docbook plugin.</description>
+        <ea:plugin mrid="org.apache.easyant.plugins#phases-std;0.2"/>
+        <ea:plugin mrid="org.apache.easyant.plugins#docbook;0.1" as="docbook"/>
+    </info>
+    <configurations>
+        <conf name="default" visibility="public" description="runtime dependencies and master artifact can be used with this conf"/>
+        <conf name="test" visibility="private" description="this scope indicates that the dependency is not required for normal use of the application, and is only available for the test compilation and execution phases."/>
+    </configurations>
+    <dependencies/>
 </ivy-module>

Modified: incubator/easyant/core/trunk/src/test/antunit/org.apache.easyant.plugins/docbook/0.1/src/documentation/docbook/index.xml
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/src/test/antunit/org.apache.easyant.plugins/docbook/0.1/src/documentation/docbook/index.xml?rev=1073371&r1=1073370&r2=1073371&view=diff
==============================================================================
--- incubator/easyant/core/trunk/src/test/antunit/org.apache.easyant.plugins/docbook/0.1/src/documentation/docbook/index.xml (original)
+++ incubator/easyant/core/trunk/src/test/antunit/org.apache.easyant.plugins/docbook/0.1/src/documentation/docbook/index.xml Tue Feb 22 15:55:55 2011
@@ -27,4 +27,3 @@
     <xi:include href="chapters/c0.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
     
 </book>
-