Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse McConnell2009-04-10 18:40:51 +0000
committerJesse McConnell2009-04-10 18:40:51 +0000
commit7e772a6078f129ebbf909aec176e2d38cc425fd7 (patch)
tree05c2a782e0da2bf2adcb642646bbe6c19f6db50a /pom.xml
parent5223f5b8bd99f971436b43cc777a3ca6b032f64a (diff)
downloadorg.eclipse.jetty.project-7e772a6078f129ebbf909aec176e2d38cc425fd7.tar.gz
org.eclipse.jetty.project-7e772a6078f129ebbf909aec176e2d38cc425fd7.tar.xz
org.eclipse.jetty.project-7e772a6078f129ebbf909aec176e2d38cc425fd7.zip
[271150] updates to allow for deploying jetty javadoc and jxr info to website, also adjust osgi bundle info
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@128 7e9141cc-0065-0410-87d8-b60c137991c4
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml45
1 files changed, 32 insertions, 13 deletions
diff --git a/pom.xml b/pom.xml
index 84de555d1d..726f74f2a6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
<parent>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-parent</artifactId>
- <version>8</version>
+ <version>9-SNAPSHOT</version>
</parent>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-project</artifactId>
@@ -74,12 +74,13 @@
<artifactId>maven-bundle-plugin</artifactId>
<version>2.0.0</version>
<extensions>true</extensions>
- <configuration>
-
+ <configuration>
<instructions>
<Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment>
<Bundle-DocURL>${jetty.url}</Bundle-DocURL>
<Bundle-Vendor>Eclipse.org - Jetty</Bundle-Vendor>
+ <Bundle-Localization>plugin</Bundle-Localization>
+ <Bundle-Classpath>.</Bundle-Classpath>
<Bundle-Copyright>Copyright (c) 2008-2009 Mort Bay Consulting Pty. Ltd.</Bundle-Copyright>
<_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy>
</instructions>
@@ -179,14 +180,32 @@
</dependency>
</dependencies>
</dependencyManagement>
- <reporting>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-project-info-reports-plugin</artifactId>
- <version>2.0</version>
- </plugin>
- </plugins>
- </reporting>
+ <profiles>
+ <profile>
+ <id>aggregate-site</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jxr-plugin</artifactId>
+ <configuration>
+ <aggregate>true</aggregate>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <configuration>
+ <excludePackageNames>com.acme</excludePackageNames>
+ <links>
+ <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
+ <link>http://java.sun.com/javaee/5/docs/api</link>
+ <link>http://junit.sourceforge.net/javadoc/</link>
+ </links>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
</project>
-

Back to the top