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/28 11:43:50 UTC

svn commit: r642188 - /maven/plugins/trunk/maven-dependency-plugin/src/it/filterunpack/validate.groovy

Author: bentmann
Date: Fri Mar 28 03:43:39 2008
New Revision: 642188

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

Modified:
    maven/plugins/trunk/maven-dependency-plugin/src/it/filterunpack/validate.groovy   (contents, props changed)

Modified: maven/plugins/trunk/maven-dependency-plugin/src/it/filterunpack/validate.groovy
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/src/it/filterunpack/validate.groovy?rev=642188&r1=642187&r2=642188&view=diff
==============================================================================
--- maven/plugins/trunk/maven-dependency-plugin/src/it/filterunpack/validate.groovy (original)
+++ maven/plugins/trunk/maven-dependency-plugin/src/it/filterunpack/validate.groovy Fri Mar 28 03:43:39 2008
@@ -1,21 +1,21 @@
-expected = ['/META-INF/MANIFEST.MF']
-
-for (item in expected)
-{
-    def file = new File(basedir, 'target/dependency' + item)
-    if (!file.exists())
-    {
-       throw new RuntimeException("Missing "+file.name);
-    }
-}
-
-notExpected = ['/stylesheet.css']
-
-for (item in notExpected)
-{
-    def file = new File(basedir, 'target/dependency' + item)    
-    if (file.exists())
-    {
-       throw new RuntimeException("This file shouldn't be here: "+file.name);
-    }
-}
+expected = ['/META-INF/MANIFEST.MF']
+
+for (item in expected)
+{
+    def file = new File(basedir, 'target/dependency' + item)
+    if (!file.exists())
+    {
+       throw new RuntimeException("Missing "+file.name);
+    }
+}
+
+notExpected = ['/stylesheet.css']
+
+for (item in notExpected)
+{
+    def file = new File(basedir, 'target/dependency' + item)    
+    if (file.exists())
+    {
+       throw new RuntimeException("This file shouldn't be here: "+file.name);
+    }
+}

Propchange: maven/plugins/trunk/maven-dependency-plugin/src/it/filterunpack/validate.groovy
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-dependency-plugin/src/it/filterunpack/validate.groovy
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision