You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ba...@apache.org on 2008/10/04 03:23:37 UTC

svn commit: r701580 - in /maven/plugins/trunk/maven-antrun-plugin/src/it/ant-1.7-features: echo.xml.expected pom.xml verify.bsh

Author: baerrach
Date: Fri Oct  3 18:23:37 2008
New Revision: 701580

URL: http://svn.apache.org/viewvc?rev=701580&view=rev
Log:
Re-committing 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=701580&r1=701579&r2=701580&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:37 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=701580&r1=701579&r2=701580&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:37 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=701580&r1=701579&r2=701580&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:37 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);
 }