Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Erdfelt2010-04-26 18:06:50 +0000
committerJoakim Erdfelt2010-04-26 18:06:50 +0000
commit84e467659e3c856cd7c00f5bbbb0ec2291526769 (patch)
treeb721ce91cd3fe58032f9f72612f9173ececfd2c2 /jetty-aggregate/jetty-webapp/pom.xml
parentc5b12f339fa0ab68598f3e2e178b5f4fc5e0c903 (diff)
downloadorg.eclipse.jetty.project-84e467659e3c856cd7c00f5bbbb0ec2291526769.tar.gz
org.eclipse.jetty.project-84e467659e3c856cd7c00f5bbbb0ec2291526769.tar.xz
org.eclipse.jetty.project-84e467659e3c856cd7c00f5bbbb0ec2291526769.zip
Adding -javadoc.jar and -sources.jar generation to other jetty aggregate projects
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1564 7e9141cc-0065-0410-87d8-b60c137991c4
Diffstat (limited to 'jetty-aggregate/jetty-webapp/pom.xml')
-rw-r--r--jetty-aggregate/jetty-webapp/pom.xml17
1 files changed, 17 insertions, 0 deletions
diff --git a/jetty-aggregate/jetty-webapp/pom.xml b/jetty-aggregate/jetty-webapp/pom.xml
index 517ff7db46..c528b1b489 100644
--- a/jetty-aggregate/jetty-webapp/pom.xml
+++ b/jetty-aggregate/jetty-webapp/pom.xml
@@ -10,6 +10,7 @@
<name>Jetty :: Aggregate :: WebApp Server</name>
<build>
+ <sourceDirectory>${project.build.directory}/sources</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@@ -28,6 +29,22 @@
<overWriteSnapshots>true</overWriteSnapshots>
</configuration>
</execution>
+ <execution>
+ <id>unpack-source</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>unpack-dependencies</goal>
+ </goals>
+ <configuration>
+ <classifier>sources</classifier>
+ <includes>**/*</includes>
+ <excludes>META-INF/**</excludes>
+ <includeGroupIds>org.eclipse.jetty</includeGroupIds>
+ <outputDirectory>${project.build.directory}/sources</outputDirectory>
+ <overWriteReleases>true</overWriteReleases>
+ <overWriteSnapshots>true</overWriteSnapshots>
+ </configuration>
+ </execution>
</executions>
</plugin>
<plugin>

Back to the top