Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Erdfelt2011-09-16 17:13:21 +0000
committerJoakim Erdfelt2011-09-16 17:13:21 +0000
commitd39ceb21a754e7de6d9d95b1861bf858656f7a85 (patch)
tree1ac2717481cf6262333aadd3f7591e626f52454a /jetty-aggregate/jetty-all
parent51cf6ee1c70f5d897564fee37e71bb1e0b9beba3 (diff)
downloadorg.eclipse.jetty.project-d39ceb21a754e7de6d9d95b1861bf858656f7a85.tar.gz
org.eclipse.jetty.project-d39ceb21a754e7de6d9d95b1861bf858656f7a85.tar.xz
org.eclipse.jetty.project-d39ceb21a754e7de6d9d95b1861bf858656f7a85.zip
357959 - Include javadoc in distribution
+ Enabling javadoc:jar on jetty-all (aggregate) + Using jetty-all-${version}-javadoc.jar as source for distribution ${jetty.home}/javadoc/ content.
Diffstat (limited to 'jetty-aggregate/jetty-all')
-rw-r--r--jetty-aggregate/jetty-all/pom.xml13
1 files changed, 13 insertions, 0 deletions
diff --git a/jetty-aggregate/jetty-all/pom.xml b/jetty-aggregate/jetty-all/pom.xml
index c65e5c899a..0e9d64808a 100644
--- a/jetty-aggregate/jetty-all/pom.xml
+++ b/jetty-aggregate/jetty-all/pom.xml
@@ -73,6 +73,19 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>javadoc-jar</id>
+ <phase>compile</phase>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>

Back to the top