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/10/25 21:29:45 UTC

svn commit: r707892 - in /maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75: ./ client/ client/src/ client/src/main/ client/src/main/java/ client/src/main/java/org/ client/src/main/java/org/apache/ client/src/main/java/org/apache/maven/ client/src/ma...

Author: bentmann
Date: Sat Oct 25 12:29:44 2008
New Revision: 707892

URL: http://svn.apache.org/viewvc?rev=707892&view=rev
Log:
o Migrated core IT 0126 which actually tests MJAR-75 over to its affected plugin project

Added:
    maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/
    maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/client/
    maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/client/pom.xml   (with props)
    maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/client/src/
    maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/client/src/main/
    maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/client/src/main/java/
    maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/client/src/main/java/org/
    maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/client/src/main/java/org/apache/
    maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/client/src/main/java/org/apache/maven/
    maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/client/src/main/java/org/apache/maven/its/
    maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/client/src/main/java/org/apache/maven/its/it0126/
    maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/client/src/main/java/org/apache/maven/its/it0126/MyClient.java   (with props)
    maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/invoker.properties   (with props)
    maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/model/
    maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/model/pom.xml   (with props)
    maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/model/src/
    maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/model/src/test/
    maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/model/src/test/java/
    maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/model/src/test/java/org/
    maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/model/src/test/java/org/apache/
    maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/model/src/test/java/org/apache/maven/
    maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/model/src/test/java/org/apache/maven/its/
    maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/model/src/test/java/org/apache/maven/its/it0126/
    maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/model/src/test/java/org/apache/maven/its/it0126/Component.java   (with props)
    maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/pom.xml   (with props)

Added: maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/client/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/client/pom.xml?rev=707892&view=auto
==============================================================================
--- maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/client/pom.xml (added)
+++ maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/client/pom.xml Sat Oct 25 12:29:44 2008
@@ -0,0 +1,44 @@
+<?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 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.maven.its.it0126</groupId>
+    <artifactId>parent</artifactId>
+    <version>1.0-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>client</artifactId>
+  <packaging>jar</packaging>
+
+  <name>Client</name>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.maven.its.it0126</groupId>
+      <artifactId>model</artifactId>
+      <type>test-jar</type>
+      <version>1.0-SNAPSHOT</version>
+    </dependency>
+  </dependencies>
+</project>

Propchange: maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/client/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/client/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/client/src/main/java/org/apache/maven/its/it0126/MyClient.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/client/src/main/java/org/apache/maven/its/it0126/MyClient.java?rev=707892&view=auto
==============================================================================
--- maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/client/src/main/java/org/apache/maven/its/it0126/MyClient.java (added)
+++ maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/client/src/main/java/org/apache/maven/its/it0126/MyClient.java Sat Oct 25 12:29:44 2008
@@ -0,0 +1,30 @@
+package org.apache.maven.its.it0126;
+
+/*
+ * 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 org.apache.maven.its.it0126.Component;
+
+public class MyClient
+{
+
+    void func()
+    {
+    }
+}

Propchange: maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/client/src/main/java/org/apache/maven/its/it0126/MyClient.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/client/src/main/java/org/apache/maven/its/it0126/MyClient.java
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/invoker.properties
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/invoker.properties?rev=707892&view=auto
==============================================================================
--- maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/invoker.properties (added)
+++ maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/invoker.properties Sat Oct 25 12:29:44 2008
@@ -0,0 +1,4 @@
+# NOTE: Only run up to "package" phase, i.e. don't install into local repo, to force Maven to resolve the client's
+# dependency on the test jar from the active project artifacts of the reactor. Using the proper artifact type for the
+# test jar is crucial for this resolution to succeed.
+invoker.goals = clean package

Propchange: maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/invoker.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/invoker.properties
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/model/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/model/pom.xml?rev=707892&view=auto
==============================================================================
--- maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/model/pom.xml (added)
+++ maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/model/pom.xml Sat Oct 25 12:29:44 2008
@@ -0,0 +1,52 @@
+<?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 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.maven.its.it0126</groupId>
+    <artifactId>parent</artifactId>
+    <version>1.0-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>model</artifactId>
+  <packaging>jar</packaging>
+
+  <name>Model</name>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <version>@project.version@</version>
+        <executions>
+          <execution>
+            <goals>
+              <goal>test-jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Propchange: maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/model/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/model/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/model/src/test/java/org/apache/maven/its/it0126/Component.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/model/src/test/java/org/apache/maven/its/it0126/Component.java?rev=707892&view=auto
==============================================================================
--- maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/model/src/test/java/org/apache/maven/its/it0126/Component.java (added)
+++ maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/model/src/test/java/org/apache/maven/its/it0126/Component.java Sat Oct 25 12:29:44 2008
@@ -0,0 +1,25 @@
+package org.apache.maven.its.it0126;
+
+/*
+ * 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.
+ */
+
+public interface Component
+{
+    void func();
+}

Propchange: maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/model/src/test/java/org/apache/maven/its/it0126/Component.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/model/src/test/java/org/apache/maven/its/it0126/Component.java
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/pom.xml?rev=707892&view=auto
==============================================================================
--- maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/pom.xml (added)
+++ maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/pom.xml Sat Oct 25 12:29:44 2008
@@ -0,0 +1,37 @@
+<?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 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>org.apache.maven.its.it0126</groupId>
+  <artifactId>parent</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <packaging>pom</packaging>
+
+  <name>Parent</name>
+
+  <modules>
+    <module>model</module>
+    <module>client</module>
+  </modules>
+
+</project>

Propchange: maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-jar-plugin/src/it/MJAR-75/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision