You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ch...@apache.org on 2007/06/21 16:45:19 UTC

svn commit: r549498 - in /activemq/camel/trunk/tooling: archetypes/pom.xml maven/pom.xml

Author: chirino
Date: Thu Jun 21 07:45:18 2007
New Revision: 549498

URL: http://svn.apache.org/viewvc?view=rev&rev=549498
Log:
Since these projects are 3 level deep from the root (the rest are 2 levels deep) the javadoc generation plugin config had to be updated.

Modified:
    activemq/camel/trunk/tooling/archetypes/pom.xml
    activemq/camel/trunk/tooling/maven/pom.xml

Modified: activemq/camel/trunk/tooling/archetypes/pom.xml
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/tooling/archetypes/pom.xml?view=diff&rev=549498&r1=549497&r2=549498
==============================================================================
--- activemq/camel/trunk/tooling/archetypes/pom.xml (original)
+++ activemq/camel/trunk/tooling/archetypes/pom.xml Thu Jun 21 07:45:18 2007
@@ -35,4 +35,35 @@
     <module>camel-router</module>
   </modules>
 
-</project>
\ No newline at end of file
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <configuration>
+          <links>
+            <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
+            <link>http://java.sun.com/j2ee/1.4/docs/api/</link>
+            <link>http://jakarta.apache.org/commons/collections/apidocs-COLLECTIONS_3_0/</link>
+            <link>http://jakarta.apache.org/commons/dbcp/apidocs/</link>
+            <link>http://jakarta.apache.org/commons/fileupload/apidocs/</link>
+            <link>http://jakarta.apache.org/commons/httpclient/apidocs/</link>
+            <link>http://jakarta.apache.org/commons/logging/apidocs/</link>
+            <link>http://jakarta.apache.org/commons/pool/apidocs/</link>
+            <link>http://junit.sourceforge.net/javadoc/</link>
+            <link>http://logging.apache.org/log4j/docs/api/</link>
+            <link>http://mina.apache.org/report/trunk/apidocs/</link>
+          </links>
+          <stylesheetfile>${basedir}/../../../etc/css/stylesheet.css</stylesheetfile>
+          <linksource>true</linksource>
+          <maxmemory>900m</maxmemory>
+          <source>1.5</source>
+
+          <!-- TODO we can't aggregate as it won't find the CSS file :( -->
+          <!--<aggregate>true</aggregate>-->
+        </configuration>
+      </plugin>
+    </plugins>
+  </reporting>
+
+</project>

Modified: activemq/camel/trunk/tooling/maven/pom.xml
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/tooling/maven/pom.xml?view=diff&rev=549498&r1=549497&r2=549498
==============================================================================
--- activemq/camel/trunk/tooling/maven/pom.xml (original)
+++ activemq/camel/trunk/tooling/maven/pom.xml Thu Jun 21 07:45:18 2007
@@ -44,4 +44,35 @@
     </dependency>
   </dependencies>
 
-</project>
\ No newline at end of file
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <configuration>
+          <links>
+            <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
+            <link>http://java.sun.com/j2ee/1.4/docs/api/</link>
+            <link>http://jakarta.apache.org/commons/collections/apidocs-COLLECTIONS_3_0/</link>
+            <link>http://jakarta.apache.org/commons/dbcp/apidocs/</link>
+            <link>http://jakarta.apache.org/commons/fileupload/apidocs/</link>
+            <link>http://jakarta.apache.org/commons/httpclient/apidocs/</link>
+            <link>http://jakarta.apache.org/commons/logging/apidocs/</link>
+            <link>http://jakarta.apache.org/commons/pool/apidocs/</link>
+            <link>http://junit.sourceforge.net/javadoc/</link>
+            <link>http://logging.apache.org/log4j/docs/api/</link>
+            <link>http://mina.apache.org/report/trunk/apidocs/</link>
+          </links>
+          <stylesheetfile>${basedir}/../../../etc/css/stylesheet.css</stylesheetfile>
+          <linksource>true</linksource>
+          <maxmemory>900m</maxmemory>
+          <source>1.5</source>
+
+          <!-- TODO we can't aggregate as it won't find the CSS file :( -->
+          <!--<aggregate>true</aggregate>-->
+        </configuration>
+      </plugin>
+    </plugins>
+  </reporting>
+
+</project>