Author: vsiveton
Date: Sun Dec 21 06:22:53 2008
New Revision: 728445

URL: http://svn.apache.org/viewvc?rev=728445&view=rev
Log:
o using reporting profile for javadoc and jxr

Modified:
    maven/doxia/doxia-sitetools/branches/doxia-sitetools-1.0.x/pom.xml
    maven/doxia/doxia-sitetools/trunk/pom.xml
    maven/doxia/doxia/branches/doxia-1.0.x/pom.xml
    maven/doxia/doxia/trunk/pom.xml

Modified: maven/doxia/doxia-sitetools/branches/doxia-sitetools-1.0.x/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/doxia/doxia-sitetools/branches/doxia-sitetools-1.0.x/pom.xml?rev=728445&r1=728444&r2=728445&view=diff
==============================================================================
--- maven/doxia/doxia-sitetools/branches/doxia-sitetools-1.0.x/pom.xml 
(original)
+++ maven/doxia/doxia-sitetools/branches/doxia-sitetools-1.0.x/pom.xml Sun Dec 
21 06:22:53 2008
@@ -202,4 +202,41 @@
       </plugins>
     </pluginManagement>
   </build>
+
+  <profiles>
+    <profile>
+      <id>reporting</id>
+      <reporting>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-javadoc-plugin</artifactId>
+            <configuration>
+              <source>1.4</source>
+              <aggregate>true</aggregate>
+              <links>
+                <link>http://java.sun.com/j2se/1.4.2/docs/api/</link>
+                <link>http://plexus.codehaus.org/plexus-utils/apidocs/</link>
+                <link>http://junit.sourceforge.net/javadoc/</link>
+              </links>
+              <tagletArtifacts>
+                <tagletArtifact>
+                  <groupId>org.codehaus.plexus</groupId>
+                  <artifactId>plexus-javadoc</artifactId>
+                  <version>1.0</version>
+                </tagletArtifact>
+              </tagletArtifacts>
+            </configuration>
+          </plugin>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-jxr-plugin</artifactId>
+            <configuration>
+              <aggregate>true</aggregate>
+            </configuration>
+          </plugin>
+        </plugins>
+      </reporting>
+    </profile>
+  </profiles>
 </project>

Modified: maven/doxia/doxia-sitetools/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/doxia/doxia-sitetools/trunk/pom.xml?rev=728445&r1=728444&r2=728445&view=diff
==============================================================================
--- maven/doxia/doxia-sitetools/trunk/pom.xml (original)
+++ maven/doxia/doxia-sitetools/trunk/pom.xml Sun Dec 21 06:22:53 2008
@@ -211,4 +211,41 @@
       </plugins>
     </pluginManagement>
   </build>
+
+  <profiles>
+    <profile>
+      <id>reporting</id>
+      <reporting>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-javadoc-plugin</artifactId>
+            <configuration>
+              <source>1.4</source>
+              <aggregate>true</aggregate>
+              <links>
+                <link>http://java.sun.com/j2se/1.4.2/docs/api/</link>
+                <link>http://plexus.codehaus.org/plexus-utils/apidocs/</link>
+                <link>http://junit.sourceforge.net/javadoc/</link>
+              </links>
+              <tagletArtifacts>
+                <tagletArtifact>
+                  <groupId>org.codehaus.plexus</groupId>
+                  <artifactId>plexus-javadoc</artifactId>
+                  <version>1.0</version>
+                </tagletArtifact>
+              </tagletArtifacts>
+            </configuration>
+          </plugin>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-jxr-plugin</artifactId>
+            <configuration>
+              <aggregate>true</aggregate>
+            </configuration>
+          </plugin>
+        </plugins>
+      </reporting>
+    </profile>
+  </profiles>
 </project>

Modified: maven/doxia/doxia/branches/doxia-1.0.x/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/doxia/doxia/branches/doxia-1.0.x/pom.xml?rev=728445&r1=728444&r2=728445&view=diff
==============================================================================
--- maven/doxia/doxia/branches/doxia-1.0.x/pom.xml (original)
+++ maven/doxia/doxia/branches/doxia-1.0.x/pom.xml Sun Dec 21 06:22:53 2008
@@ -193,43 +193,41 @@
       </plugins>
     </pluginManagement>
   </build>
-  
-  <reporting>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-javadoc-plugin</artifactId>
-        <configuration>
-          <source>1.4</source>
-          <aggregate>true</aggregate>
-          <links>
-            <link>http://java.sun.com/j2se/1.4.2/docs/api/</link>
-            <link>http://plexus.codehaus.org/plexus-utils/apidocs/</link>
-            <link>http://junit.sourceforge.net/javadoc/</link>
-          </links>
-          <tagletArtifacts>
-            <tagletArtifact>
-              <groupId>org.codehaus.plexus</groupId>
-              <artifactId>plexus-javadoc</artifactId>
-              <version>1.0</version>
-            </tagletArtifact>
-          </tagletArtifacts>
-          <reportSets>
-            <reportSet>
-              <id>html</id>
-              <reports>
-                <report>javadoc</report>
-              </reports>
-            </reportSet>
-            <reportSet>
-              <id>test-html</id>
-              <reports>
-                <report>test-javadoc</report>
-              </reports>
-            </reportSet>
-          </reportSets>
-        </configuration>
-      </plugin>
-    </plugins>
-  </reporting>
+
+  <profiles>
+    <profile>
+      <id>reporting</id>
+      <reporting>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-javadoc-plugin</artifactId>
+            <configuration>
+              <source>1.4</source>
+              <aggregate>true</aggregate>
+              <links>
+                <link>http://java.sun.com/j2se/1.4.2/docs/api/</link>
+                <link>http://plexus.codehaus.org/plexus-utils/apidocs/</link>
+                <link>http://junit.sourceforge.net/javadoc/</link>
+              </links>
+              <tagletArtifacts>
+                <tagletArtifact>
+                  <groupId>org.codehaus.plexus</groupId>
+                  <artifactId>plexus-javadoc</artifactId>
+                  <version>1.0</version>
+                </tagletArtifact>
+              </tagletArtifacts>
+            </configuration>
+          </plugin>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-jxr-plugin</artifactId>
+            <configuration>
+              <aggregate>true</aggregate>
+            </configuration>
+          </plugin>
+        </plugins>
+      </reporting>
+    </profile>
+  </profiles>
 </project>

Modified: maven/doxia/doxia/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/doxia/doxia/trunk/pom.xml?rev=728445&r1=728444&r2=728445&view=diff
==============================================================================
--- maven/doxia/doxia/trunk/pom.xml (original)
+++ maven/doxia/doxia/trunk/pom.xml Sun Dec 21 06:22:53 2008
@@ -210,42 +210,40 @@
     </pluginManagement>
   </build>
 
-  <reporting>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-javadoc-plugin</artifactId>
-        <configuration>
-          <source>1.4</source>
-          <aggregate>true</aggregate>
-          <links>
-            <link>http://java.sun.com/j2se/1.4.2/docs/api/</link>
-            <link>http://plexus.codehaus.org/plexus-utils/apidocs/</link>
-            <link>http://junit.sourceforge.net/javadoc/</link>
-          </links>
-          <tagletArtifacts>
-            <tagletArtifact>
-              <groupId>org.codehaus.plexus</groupId>
-              <artifactId>plexus-javadoc</artifactId>
-              <version>1.0</version>
-            </tagletArtifact>
-          </tagletArtifacts>
-          <reportSets>
-            <reportSet>
-              <id>html</id>
-              <reports>
-                <report>javadoc</report>
-              </reports>
-            </reportSet>
-            <reportSet>
-              <id>test-html</id>
-              <reports>
-                <report>test-javadoc</report>
-              </reports>
-            </reportSet>
-          </reportSets>
-        </configuration>
-      </plugin>
-    </plugins>
-  </reporting>
+  <profiles>
+    <profile>
+      <id>reporting</id>
+      <reporting>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-javadoc-plugin</artifactId>
+            <configuration>
+              <source>1.4</source>
+              <aggregate>true</aggregate>
+              <links>
+                <link>http://java.sun.com/j2se/1.4.2/docs/api/</link>
+                <link>http://plexus.codehaus.org/plexus-utils/apidocs/</link>
+                <link>http://junit.sourceforge.net/javadoc/</link>
+              </links>
+              <tagletArtifacts>
+                <tagletArtifact>
+                  <groupId>org.codehaus.plexus</groupId>
+                  <artifactId>plexus-javadoc</artifactId>
+                  <version>1.0</version>
+                </tagletArtifact>
+              </tagletArtifacts>
+            </configuration>
+          </plugin>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-jxr-plugin</artifactId>
+            <configuration>
+              <aggregate>true</aggregate>
+            </configuration>
+          </plugin>
+        </plugins>
+      </reporting>
+    </profile>
+  </profiles>
 </project>


Reply via email to