You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jd...@apache.org on 2010/04/13 21:41:40 UTC

svn commit: r933763 - in /maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275: ./ mod-a/ mod-a/src/ mod-a/src/main/ mod-a/src/main/java/ mod-b/ mod-b/src/ mod-b/src/main/ mod-b/src/main/java/ mod-c/ mod-c/src/ mod-c/src/main/ mod-c/src/main/java/

Author: jdcasey
Date: Tue Apr 13 19:41:39 2010
New Revision: 933763

URL: http://svn.apache.org/viewvc?rev=933763&view=rev
Log:
[MJAVADOC-275] Adding IT.

Added:
    maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/
    maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/goals.txt   (with props)
    maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-a/
    maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-a/pom.xml   (with props)
    maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-a/src/
    maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-a/src/main/
    maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-a/src/main/java/
    maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-a/src/main/java/Main.java   (with props)
    maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-b/
    maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-b/pom.xml   (with props)
    maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-b/src/
    maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-b/src/main/
    maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-b/src/main/java/
    maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-b/src/main/java/Main.java   (with props)
    maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-c/
    maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-c/pom.xml   (with props)
    maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-c/src/
    maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-c/src/main/
    maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-c/src/main/java/
    maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-c/src/main/java/Main.java   (with props)
    maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/pom.xml   (with props)

Added: maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/goals.txt
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/goals.txt?rev=933763&view=auto
==============================================================================
--- maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/goals.txt (added)
+++ maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/goals.txt Tue Apr 13 19:41:39 2010
@@ -0,0 +1 @@
+clean install

Propchange: maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/goals.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Added: maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-a/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-a/pom.xml?rev=933763&view=auto
==============================================================================
--- maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-a/pom.xml (added)
+++ maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-a/pom.xml Tue Apr 13 19:41:39 2010
@@ -0,0 +1,41 @@
+<?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>
+
+  <parent>
+    <groupId>org.apache.maven.its.javadoc</groupId>
+    <artifactId>MJAVADOC-275</artifactId>
+    <version>0.1</version>
+  </parent>
+
+  <groupId>org.apache.maven.its.javadoc</groupId>
+  <artifactId>MJAVADOC-275-mod-a</artifactId>
+  <version>0.1</version>
+  <packaging>jar</packaging>
+
+  <name>MJAVADOC - Module A</name>
+  <description>
+    Test that javadoc attachments can be build in a multi-module project where the modules have
+    inter-dependencies and have never been installed/deployed before.
+  </description>
+</project>

Propchange: maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-a/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-a/src/main/java/Main.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-a/src/main/java/Main.java?rev=933763&view=auto
==============================================================================
--- maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-a/src/main/java/Main.java (added)
+++ maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-a/src/main/java/Main.java Tue Apr 13 19:41:39 2010
@@ -0,0 +1,3 @@
+public class Main
+{
+}

Propchange: maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-a/src/main/java/Main.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-b/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-b/pom.xml?rev=933763&view=auto
==============================================================================
--- maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-b/pom.xml (added)
+++ maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-b/pom.xml Tue Apr 13 19:41:39 2010
@@ -0,0 +1,49 @@
+<?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>
+
+  <parent>
+    <groupId>org.apache.maven.its.javadoc</groupId>
+    <artifactId>MJAVADOC-275</artifactId>
+    <version>0.1</version>
+  </parent>
+
+  <groupId>org.apache.maven.its.javadoc</groupId>
+  <artifactId>MJAVADOC-275-mod-b</artifactId>
+  <version>0.1</version>
+  <packaging>jar</packaging>
+
+  <name>MJAVADOC - Module B</name>
+  <description>
+    Test that javadoc attachments can be build in a multi-module project where the modules have
+    inter-dependencies and have never been installed/deployed before.
+  </description>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.maven.its.javadoc</groupId>
+      <artifactId>MJAVADOC-275-mod-a</artifactId>
+      <version>0.1</version>
+    </dependency>
+  </dependencies>
+</project>

Propchange: maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-b/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-b/src/main/java/Main.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-b/src/main/java/Main.java?rev=933763&view=auto
==============================================================================
--- maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-b/src/main/java/Main.java (added)
+++ maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-b/src/main/java/Main.java Tue Apr 13 19:41:39 2010
@@ -0,0 +1,3 @@
+public class Main
+{
+}

Propchange: maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-b/src/main/java/Main.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-c/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-c/pom.xml?rev=933763&view=auto
==============================================================================
--- maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-c/pom.xml (added)
+++ maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-c/pom.xml Tue Apr 13 19:41:39 2010
@@ -0,0 +1,49 @@
+<?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>
+
+  <parent>
+    <groupId>org.apache.maven.its.javadoc</groupId>
+    <artifactId>MJAVADOC-275</artifactId>
+    <version>0.1</version>
+  </parent>
+
+  <groupId>org.apache.maven.its.javadoc</groupId>
+  <artifactId>MJAVADOC-275-mod-c</artifactId>
+  <version>0.1</version>
+  <packaging>jar</packaging>
+
+  <name>MJAVADOC - Module C</name>
+  <description>
+    Test that javadoc attachments can be build in a multi-module project where the modules have
+    inter-dependencies and have never been installed/deployed before.
+  </description>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.maven.its.javadoc</groupId>
+      <artifactId>MJAVADOC-275-mod-b</artifactId>
+      <version>0.1</version>
+    </dependency>
+  </dependencies>
+</project>

Propchange: maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-c/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-c/src/main/java/Main.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-c/src/main/java/Main.java?rev=933763&view=auto
==============================================================================
--- maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-c/src/main/java/Main.java (added)
+++ maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-c/src/main/java/Main.java Tue Apr 13 19:41:39 2010
@@ -0,0 +1,3 @@
+public class Main
+{
+}

Propchange: maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/mod-c/src/main/java/Main.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/pom.xml?rev=933763&view=auto
==============================================================================
--- maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/pom.xml (added)
+++ maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/pom.xml Tue Apr 13 19:41:39 2010
@@ -0,0 +1,63 @@
+<?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.javadoc</groupId>
+  <artifactId>MJAVADOC-275</artifactId>
+  <version>0.1</version>
+  <packaging>pom</packaging>
+
+  <name>MJAVADOC</name>
+  <description>
+    Test that javadoc attachments can be build in a multi-module project where the modules have
+    inter-dependencies and have never been installed/deployed before.
+  </description>
+  <!-- NOTE: Project URL is crucial to trigger bug! -->
+  <url>http://maven.apache.org/</url>
+
+  <modules>
+    <module>mod-a</module>
+    <module>mod-b</module>
+    <module>mod-c</module>
+  </modules>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <version>@pom.version@</version>
+        <!-- <version>2.6.1</version> -->
+        <executions>
+          <execution>
+            <id>attach</id>
+            <phase>package</phase>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Propchange: maven/plugins/trunk/maven-javadoc-plugin/src/it/MJAVADOC-275/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native