You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by be...@apache.org on 2010/09/26 21:04:06 UTC

svn commit: r1001496 - /maven/ant-tasks/trunk/build-tests.xml

Author: bentmann
Date: Sun Sep 26 19:04:06 2010
New Revision: 1001496

URL: http://svn.apache.org/viewvc?rev=1001496&view=rev
Log:
o Fixed indentation

Modified:
    maven/ant-tasks/trunk/build-tests.xml

Modified: maven/ant-tasks/trunk/build-tests.xml
URL: http://svn.apache.org/viewvc/maven/ant-tasks/trunk/build-tests.xml?rev=1001496&r1=1001495&r2=1001496&view=diff
==============================================================================
--- maven/ant-tasks/trunk/build-tests.xml (original)
+++ maven/ant-tasks/trunk/build-tests.xml Sun Sep 26 19:04:06 2010
@@ -66,12 +66,12 @@
     depends="test-pom, test-pom-profiles, test-pom-with-parent,test-no-deps,test-pom-deps,
              test-deps-two-repos,test-deps,test-legacy-pom,test-deps-mirror,test-deps-order,
              test-deps-sources,test-deps-sources-empty,test-deps-profile,test-deps-scopes,test-system-scope,
-  	         test-bad-scope">
+             test-bad-scope">
     <echo>Some tests must be run manually, since they are intended to fail:
-        - test-bad-dep
-        - test-invalid-pom-ref
-    	- test-bad-system-dep
-    	- test-bad-repo-refid
+- test-bad-dep
+- test-invalid-pom-ref
+- test-bad-system-dep
+- test-bad-repo-refid
     </echo>
   </target>
 
@@ -99,14 +99,14 @@
   </target>
 
   <target name="test-bad-dep" depends="initTaskDefs">
-  	<echo>Expected failure because foo:foo:jar:1.0-alpha-2 artifact does not exist.</echo>
+    <echo>Expected failure because foo:foo:jar:1.0-alpha-2 artifact does not exist.</echo>
     <artifact:dependencies pathId="dependency.classpath" filesetId="dependency.fileset">
       <dependency groupId="foo" artifactId="foo" version="1.0-alpha-2"/>
     </artifact:dependencies>
   </target>
 
   <target name="test-bad-scope" depends="initTaskDefs">
-  	<echo>Expected warning because 'bad-value' is not a valid scope. Error message must show official scopes. See MANTTASKS-190 for more information.</echo>
+    <echo>Expected warning because 'bad-value' is not a valid scope. Error message must show official scopes. See MANTTASKS-190 for more information.</echo>
     <artifact:dependencies>
       <dependency groupId="commons-logging" artifactId="commons-logging" version="1.1.1" scope="bad-value"/>
     </artifact:dependencies>
@@ -135,7 +135,7 @@
 
     <echo>project.build.directory = ${my.maven.project.build.directory}</echo>
 
-  	<fail message="failed to get basedir">
+    <fail message="failed to get basedir">
       <condition>
         <contains string="${my.maven.project.build.directory}" substring="{"/>
       </condition>
@@ -327,7 +327,7 @@
   </target>
 
   <target name="test-deps-repo-override" depends="initTaskDefs">
-  	<echo>Expected failure: central has been overrided.</echo>
+    <echo>Expected failure: central has been overrided.</echo>
     <delete dir="target/tmp"/>
     <artifact:dependencies settingsFile="${basedir}/src/test/settings-empty.xml">
       <localRepository path="target/tmp"/>
@@ -681,7 +681,7 @@
   </target>
 
   <target name="test-bad-system-dep" depends="initTaskDefs">
-  	<echo>Expected failure: dependency with scope="system" must define systemPath attribute</echo>
+    <echo>Expected failure: dependency with scope="system" must define systemPath attribute</echo>
     <artifact:dependencies>
       <dependency groupId="foo" artifactId="bar" version="1.0" scope="system"/>
       <localRepository refid="local.repository"/>
@@ -689,7 +689,7 @@
   </target>
 
   <target name="test-bad-repo-refid" depends="initTaskDefs">
-  	<echo>Expected failure: undefined remoteRepository refid</echo>
+    <echo>Expected failure: undefined remoteRepository refid</echo>
     <artifact:dependencies>
       <remoteRepository refid="not-defined"/>
       <dependency groupId="commons-logging" artifactId="commons-logging" version="1.1.1"/>