You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openjpa.apache.org by dw...@apache.org on 2010/10/18 19:03:19 UTC

svn commit: r1023904 - /openjpa/trunk/openjpa-examples/pom.xml

Author: dwoods
Date: Mon Oct 18 17:03:19 2010
New Revision: 1023904

URL: http://svn.apache.org/viewvc?rev=1023904&view=rev
Log:
don't build javadocs for examples

Modified:
    openjpa/trunk/openjpa-examples/pom.xml

Modified: openjpa/trunk/openjpa-examples/pom.xml
URL: http://svn.apache.org/viewvc/openjpa/trunk/openjpa-examples/pom.xml?rev=1023904&r1=1023903&r2=1023904&view=diff
==============================================================================
--- openjpa/trunk/openjpa-examples/pom.xml (original)
+++ openjpa/trunk/openjpa-examples/pom.xml Mon Oct 18 17:03:19 2010
@@ -48,4 +48,20 @@
         <module>image-gallery</module>
         <module>openbooks</module>
     </modules>
+
+    <build>
+        <pluginManagement>
+            <plugins>
+                <!-- disable creating javadoc for these modules -->
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-javadoc-plugin</artifactId>
+                    <configuration>
+                        <skip>true</skip>
+                    </configuration>
+                    <inherited>true</inherited>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+    </build>
 </project>