You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by cz...@apache.org on 2008/05/30 10:53:31 UTC

svn commit: r661597 - in /incubator/sling/trunk/commons: log/pom.xml mime/pom.xml scheduler/pom.xml threads/pom.xml

Author: cziegeler
Date: Fri May 30 01:53:30 2008
New Revision: 661597

URL: http://svn.apache.org/viewvc?rev=661597&view=rev
Log:
SLING-483: Add excludes for javadocs (WiP)

Modified:
    incubator/sling/trunk/commons/log/pom.xml
    incubator/sling/trunk/commons/mime/pom.xml
    incubator/sling/trunk/commons/scheduler/pom.xml
    incubator/sling/trunk/commons/threads/pom.xml

Modified: incubator/sling/trunk/commons/log/pom.xml
URL: http://svn.apache.org/viewvc/incubator/sling/trunk/commons/log/pom.xml?rev=661597&r1=661596&r2=661597&view=diff
==============================================================================
--- incubator/sling/trunk/commons/log/pom.xml (original)
+++ incubator/sling/trunk/commons/log/pom.xml Fri May 30 01:53:30 2008
@@ -78,6 +78,22 @@
         </plugins>
     </build>
 
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                  <!-- No javadocs at all -->
+                    <excludePackageNames>
+                        org.apache.sling.commons.log,
+                        org/slf4j/impl
+                    </excludePackageNames>
+                </configuration>
+            </plugin>
+        </plugins>
+    </reporting>
+
     <dependencies>
         <!-- Redirection of commons logging and log4j to SLF4J -->
         <dependency>

Modified: incubator/sling/trunk/commons/mime/pom.xml
URL: http://svn.apache.org/viewvc/incubator/sling/trunk/commons/mime/pom.xml?rev=661597&r1=661596&r2=661597&view=diff
==============================================================================
--- incubator/sling/trunk/commons/mime/pom.xml (original)
+++ incubator/sling/trunk/commons/mime/pom.xml Fri May 30 01:53:30 2008
@@ -71,6 +71,19 @@
             </plugin>
         </plugins>
     </build>
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <excludePackageNames>
+                        org.apache.sling.commons.mime.internal
+                    </excludePackageNames>
+                </configuration>
+            </plugin>
+        </plugins>
+    </reporting>
     <dependencies>
         <dependency>
             <groupId>org.apache.felix</groupId>

Modified: incubator/sling/trunk/commons/scheduler/pom.xml
URL: http://svn.apache.org/viewvc/incubator/sling/trunk/commons/scheduler/pom.xml?rev=661597&r1=661596&r2=661597&view=diff
==============================================================================
--- incubator/sling/trunk/commons/scheduler/pom.xml (original)
+++ incubator/sling/trunk/commons/scheduler/pom.xml Fri May 30 01:53:30 2008
@@ -84,6 +84,19 @@
             </plugin>
         </plugins>
     </build>
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <excludePackageNames>
+                        org.apache.sling.commons.scheduler.impl
+                    </excludePackageNames>
+                </configuration>
+            </plugin>
+        </plugins>
+    </reporting>
     <dependencies>
         <dependency>
             <groupId>org.apache.felix</groupId>

Modified: incubator/sling/trunk/commons/threads/pom.xml
URL: http://svn.apache.org/viewvc/incubator/sling/trunk/commons/threads/pom.xml?rev=661597&r1=661596&r2=661597&view=diff
==============================================================================
--- incubator/sling/trunk/commons/threads/pom.xml (original)
+++ incubator/sling/trunk/commons/threads/pom.xml Fri May 30 01:53:30 2008
@@ -71,6 +71,19 @@
             </plugin>
         </plugins>
     </build>
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <excludePackageNames>
+                        org.apache.sling.commons.threads.impl
+                    </excludePackageNames>
+                </configuration>
+            </plugin>
+        </plugins>
+    </reporting>
     <dependencies>
         <dependency>
             <groupId>org.apache.felix</groupId>