You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2013/11/21 21:05:33 UTC

svn commit: r1544305 - in /maven/plugins/trunk/maven-ear-plugin/src/it/transitive-excludes: ./ invoker.properties pom.xml verify.bsh

Author: rfscholte
Date: Thu Nov 21 20:05:33 2013
New Revision: 1544305

URL: http://svn.apache.org/r1544305
Log:
[MEAR-73] Property to disable transitive dependencies resolving 
IT to confirm this works for M3 already

Added:
    maven/plugins/trunk/maven-ear-plugin/src/it/transitive-excludes/   (with props)
    maven/plugins/trunk/maven-ear-plugin/src/it/transitive-excludes/invoker.properties
    maven/plugins/trunk/maven-ear-plugin/src/it/transitive-excludes/pom.xml
    maven/plugins/trunk/maven-ear-plugin/src/it/transitive-excludes/verify.bsh

Propchange: maven/plugins/trunk/maven-ear-plugin/src/it/transitive-excludes/
------------------------------------------------------------------------------
--- bugtraq:logregex (added)
+++ bugtraq:logregex Thu Nov 21 20:05:33 2013
@@ -0,0 +1 @@
+MEAR-\d+

Propchange: maven/plugins/trunk/maven-ear-plugin/src/it/transitive-excludes/
------------------------------------------------------------------------------
    bugtraq:url = http://jira.codehaus.org/browse/%BUGID%

Added: maven/plugins/trunk/maven-ear-plugin/src/it/transitive-excludes/invoker.properties
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-ear-plugin/src/it/transitive-excludes/invoker.properties?rev=1544305&view=auto
==============================================================================
--- maven/plugins/trunk/maven-ear-plugin/src/it/transitive-excludes/invoker.properties (added)
+++ maven/plugins/trunk/maven-ear-plugin/src/it/transitive-excludes/invoker.properties Thu Nov 21 20:05:33 2013
@@ -0,0 +1,2 @@
+# wildcard exclusions for dependencies not supported by Maven2
+invoker.maven.version = 3.0+ 
\ No newline at end of file

Added: maven/plugins/trunk/maven-ear-plugin/src/it/transitive-excludes/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-ear-plugin/src/it/transitive-excludes/pom.xml?rev=1544305&view=auto
==============================================================================
--- maven/plugins/trunk/maven-ear-plugin/src/it/transitive-excludes/pom.xml (added)
+++ maven/plugins/trunk/maven-ear-plugin/src/it/transitive-excludes/pom.xml Thu Nov 21 20:05:33 2013
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+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.
+-->
+
+<project>
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>org.apache.maven.its.ear</groupId>
+  <artifactId>mear73</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <packaging>ear</packaging>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-core</artifactId>
+      <version>3.0</version>
+      <exclusions>
+        <exclusion>
+          <groupId>*</groupId>
+          <artifactId>*</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-ear-plugin</artifactId>
+        <version>@project.version@</version>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: maven/plugins/trunk/maven-ear-plugin/src/it/transitive-excludes/verify.bsh
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-ear-plugin/src/it/transitive-excludes/verify.bsh?rev=1544305&view=auto
==============================================================================
--- maven/plugins/trunk/maven-ear-plugin/src/it/transitive-excludes/verify.bsh (added)
+++ maven/plugins/trunk/maven-ear-plugin/src/it/transitive-excludes/verify.bsh Thu Nov 21 20:05:33 2013
@@ -0,0 +1,43 @@
+/*
+ * 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 java.util.*;
+import java.util.jar.*;
+import java.util.regex.*;
+
+File earFile = new File( basedir, "target/mear73-1.0-SNAPSHOT.ear" );
+if ( !earFile.isFile() )
+{
+    throw new IllegalStateException( "Missing file: " + earFile );
+}
+
+JarFile ear = new JarFile( earFile );
+Enumeration entries = ear.entries();
+while( entries.hasMoreElements() )
+{
+  JarEntry entry = (JarEntry) entries.nextElement();
+  if( entry.getName().endsWith( ".jar" ) && !"maven-core-3.0.jar".equals( entry.getName() ) )
+  {
+    throw new IllegalStateException( "Unexpected archive entry: " + entry.getName() );
+  }
+}
+ear.close();
+
+return true;