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 2008/03/24 14:24:47 UTC

svn commit: r640409 - in /maven/plugins/trunk/maven-invoker-plugin/src: main/java/org/apache/maven/plugin/invoker/ test/java/org/apache/maven/plugin/invoker/ test/resources/unit/dummy/ test/resources/unit/goals-from-file/ test/resources/unit/interpolat...

Author: bentmann
Date: Mon Mar 24 06:24:45 2008
New Revision: 640409

URL: http://svn.apache.org/viewvc?rev=640409&view=rev
Log:
o Added svn:eol-style=native

Modified:
    maven/plugins/trunk/maven-invoker-plugin/src/main/java/org/apache/maven/plugin/invoker/CompositeMap.java   (props changed)
    maven/plugins/trunk/maven-invoker-plugin/src/test/java/org/apache/maven/plugin/invoker/ExtendedMavenProjectStub.java   (props changed)
    maven/plugins/trunk/maven-invoker-plugin/src/test/java/org/apache/maven/plugin/invoker/InterpolationTest.java   (props changed)
    maven/plugins/trunk/maven-invoker-plugin/src/test/java/org/apache/maven/plugin/invoker/InvokerMojoTest.java   (props changed)
    maven/plugins/trunk/maven-invoker-plugin/src/test/resources/unit/dummy/pom.xml   (props changed)
    maven/plugins/trunk/maven-invoker-plugin/src/test/resources/unit/goals-from-file/goals.txt   (props changed)
    maven/plugins/trunk/maven-invoker-plugin/src/test/resources/unit/goals-from-file/pom.xml   (props changed)
    maven/plugins/trunk/maven-invoker-plugin/src/test/resources/unit/goals-from-file/validate-goal.txt   (props changed)
    maven/plugins/trunk/maven-invoker-plugin/src/test/resources/unit/goals-from-file/verify.bsh   (contents, props changed)
    maven/plugins/trunk/maven-invoker-plugin/src/test/resources/unit/interpolation/pom.xml   (props changed)

Propchange: maven/plugins/trunk/maven-invoker-plugin/src/main/java/org/apache/maven/plugin/invoker/CompositeMap.java
------------------------------------------------------------------------------
--- svn:eol-style (original)
+++ svn:eol-style Mon Mar 24 06:24:45 2008
@@ -1 +1 @@
-LF
+native

Propchange: maven/plugins/trunk/maven-invoker-plugin/src/test/java/org/apache/maven/plugin/invoker/ExtendedMavenProjectStub.java
------------------------------------------------------------------------------
--- svn:eol-style (original)
+++ svn:eol-style Mon Mar 24 06:24:45 2008
@@ -1 +1 @@
-LF
+native

Propchange: maven/plugins/trunk/maven-invoker-plugin/src/test/java/org/apache/maven/plugin/invoker/InterpolationTest.java
------------------------------------------------------------------------------
--- svn:eol-style (original)
+++ svn:eol-style Mon Mar 24 06:24:45 2008
@@ -1 +1 @@
-LF
+native

Propchange: maven/plugins/trunk/maven-invoker-plugin/src/test/java/org/apache/maven/plugin/invoker/InvokerMojoTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-invoker-plugin/src/test/resources/unit/dummy/pom.xml
------------------------------------------------------------------------------
--- svn:eol-style (original)
+++ svn:eol-style Mon Mar 24 06:24:45 2008
@@ -1 +1 @@
-LF
+native

Propchange: maven/plugins/trunk/maven-invoker-plugin/src/test/resources/unit/goals-from-file/goals.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-invoker-plugin/src/test/resources/unit/goals-from-file/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-invoker-plugin/src/test/resources/unit/goals-from-file/validate-goal.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: maven/plugins/trunk/maven-invoker-plugin/src/test/resources/unit/goals-from-file/verify.bsh
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-invoker-plugin/src/test/resources/unit/goals-from-file/verify.bsh?rev=640409&r1=640408&r2=640409&view=diff
==============================================================================
--- maven/plugins/trunk/maven-invoker-plugin/src/test/resources/unit/goals-from-file/verify.bsh (original)
+++ maven/plugins/trunk/maven-invoker-plugin/src/test/resources/unit/goals-from-file/verify.bsh Mon Mar 24 06:24:45 2008
@@ -1,49 +1,49 @@
-
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-import java.io.*;
-import org.codehaus.plexus.util.*;
-
-boolean result = true;
-
-try
-{
-    
-    File build = new File ( basedir, "build.log" );
-    if ( !build.exists() || build.isDirectory() )
-    {
-        System.err.println( "build.log file is missing or a directory." );
-        return false;
-    }    
-    FileInputStream fis = new FileInputStream ( build );
-    String buildContent = IOUtil.toString ( fis );
-    int indexOf = buildContent.indexOf( "BUILD SUCCESSFUL" );
-    if ( indexOf < 0)
-    {
-    	System.err.println( "build.log doesn't contains BUILD SUCCESSFUL" );
-    }    
-}
-catch( IOException e )
-{
-    e.printStackTrace();
-    result = false;
-}
-
-return result;
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+import java.io.*;
+import org.codehaus.plexus.util.*;
+
+boolean result = true;
+
+try
+{
+    
+    File build = new File ( basedir, "build.log" );
+    if ( !build.exists() || build.isDirectory() )
+    {
+        System.err.println( "build.log file is missing or a directory." );
+        return false;
+    }    
+    FileInputStream fis = new FileInputStream ( build );
+    String buildContent = IOUtil.toString ( fis );
+    int indexOf = buildContent.indexOf( "BUILD SUCCESSFUL" );
+    if ( indexOf < 0)
+    {
+    	System.err.println( "build.log doesn't contains BUILD SUCCESSFUL" );
+    }    
+}
+catch( IOException e )
+{
+    e.printStackTrace();
+    result = false;
+}
+
+return result;

Propchange: maven/plugins/trunk/maven-invoker-plugin/src/test/resources/unit/goals-from-file/verify.bsh
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-invoker-plugin/src/test/resources/unit/interpolation/pom.xml
------------------------------------------------------------------------------
--- svn:eol-style (original)
+++ svn:eol-style Mon Mar 24 06:24:45 2008
@@ -1 +1 @@
-LF
+native