Author: baerrach Date: Fri Oct 3 18:23:00 2008 New Revision: 701579 URL: http://svn.apache.org/viewvc?rev=701579&view=rev Log: Re-committing with junk spaces to fix not having set svn properties correctly
Modified: maven/plugins/trunk/maven-antrun-plugin/src/it/ant-1.7-features/echo.xml.expected maven/plugins/trunk/maven-antrun-plugin/src/it/ant-1.7-features/pom.xml maven/plugins/trunk/maven-antrun-plugin/src/it/ant-1.7-features/verify.bsh Modified: maven/plugins/trunk/maven-antrun-plugin/src/it/ant-1.7-features/echo.xml.expected URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-antrun-plugin/src/it/ant-1.7-features/echo.xml.expected?rev=701579&r1=701578&r2=701579&view=diff ============================================================================== --- maven/plugins/trunk/maven-antrun-plugin/src/it/ant-1.7-features/echo.xml.expected (original) +++ maven/plugins/trunk/maven-antrun-plugin/src/it/ant-1.7-features/echo.xml.expected Fri Oct 3 18:23:00 2008 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> -<project default="foo"> +<project default="foo" > <target name="foo"> <echo>foo</echo> </target> Modified: maven/plugins/trunk/maven-antrun-plugin/src/it/ant-1.7-features/pom.xml URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-antrun-plugin/src/it/ant-1.7-features/pom.xml?rev=701579&r1=701578&r2=701579&view=diff ============================================================================== --- maven/plugins/trunk/maven-antrun-plugin/src/it/ant-1.7-features/pom.xml (original) +++ maven/plugins/trunk/maven-antrun-plugin/src/it/ant-1.7-features/pom.xml Fri Oct 3 18:23:00 2008 @@ -24,7 +24,7 @@ <groupId>org.apache.maven.plugins.antrun</groupId> <artifactId>antrun-plugin-test</artifactId> <version>1.0-SNAPSHOT</version> - <name>Test for MANTRUN-68</name> + <name>Test for MANTRUN-68 </name> <dependencies></dependencies> <build> <plugins> Modified: maven/plugins/trunk/maven-antrun-plugin/src/it/ant-1.7-features/verify.bsh URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-antrun-plugin/src/it/ant-1.7-features/verify.bsh?rev=701579&r1=701578&r2=701579&view=diff ============================================================================== --- maven/plugins/trunk/maven-antrun-plugin/src/it/ant-1.7-features/verify.bsh (original) +++ maven/plugins/trunk/maven-antrun-plugin/src/it/ant-1.7-features/verify.bsh Fri Oct 3 18:23:00 2008 @@ -6,7 +6,7 @@ try { - File actual = new File( basedir, "echo.xml" ); + File actual = new File( basedir, "echo.xml" ); File expected = new File( basedir, "echo.xml.expected" ); return FileUtils.contentEquals(expected, actual); }