2009-03-24 17:07:27 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-parent</artifactId>
|
2011-05-17 15:33:05 -04:00
|
|
|
<version>17</version>
|
2009-03-24 17:07:27 -04:00
|
|
|
</parent>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-project</artifactId>
|
2011-05-26 08:14:37 -04:00
|
|
|
<version>7.4.2.v20110526</version>
|
2009-03-24 17:07:27 -04:00
|
|
|
<name>Jetty :: Project</name>
|
2011-02-15 09:35:16 -05:00
|
|
|
<url>${jetty.url}</url>
|
2009-03-24 17:07:27 -04:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
<properties>
|
2010-05-05 14:58:22 -04:00
|
|
|
<javax-activation-version>1.1</javax-activation-version>
|
|
|
|
<javax-mail-version>1.4.1</javax-mail-version>
|
2010-05-05 15:24:57 -04:00
|
|
|
<javax-servlet-jsp-version>2.1.v20100127</javax-servlet-jsp-version>
|
2010-05-05 14:58:22 -04:00
|
|
|
<javax-transaction-version>1.1.1</javax-transaction-version>
|
|
|
|
<jetty.url>http://www.eclipse.org/jetty</jetty.url>
|
2011-05-25 19:05:29 -04:00
|
|
|
<junit-version>4.8.1</junit-version>
|
2009-08-17 19:03:00 -04:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2010-09-14 15:17:20 -04:00
|
|
|
<slf4j-version>1.5.11</slf4j-version>
|
2010-05-26 14:39:15 -04:00
|
|
|
<build-support-version>1.0</build-support-version>
|
2011-05-25 19:05:31 -04:00
|
|
|
<jetty.test.helper>1.5</jetty.test.helper>
|
2011-04-04 16:37:19 -04:00
|
|
|
<jetty.test.policy>1.2</jetty.test.policy>
|
2009-08-17 19:03:00 -04:00
|
|
|
</properties>
|
2009-03-24 17:07:27 -04:00
|
|
|
<scm>
|
2011-05-26 08:14:37 -04:00
|
|
|
<connection>scm:svn:http://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/tags/jetty-7.4.2.v20110526</connection>
|
|
|
|
<developerConnection>scm:svn:svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/tags/jetty-7.4.2.v20110526</developerConnection>
|
|
|
|
<url>http://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/tags/jetty-7.4.2.v20110526</url>
|
2009-03-24 17:07:27 -04:00
|
|
|
</scm>
|
|
|
|
<build>
|
|
|
|
<defaultGoal>install</defaultGoal>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>1.5</source>
|
|
|
|
<target>1.5</target>
|
|
|
|
<verbose>false</verbose>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
|
|
<configuration>
|
2009-04-01 14:06:52 -04:00
|
|
|
<tagBase>svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/tags</tagBase>
|
2010-05-26 14:43:25 -04:00
|
|
|
<autoVersionSubmodules>true</autoVersionSubmodules>
|
2009-03-24 17:07:27 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2010-05-03 13:02:09 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-remote-resources-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>process</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<resourceBundles>
|
|
|
|
<resourceBundle>org.eclipse.jetty.toolchain:jetty-artifact-remote-resources:1.0</resourceBundle>
|
|
|
|
</resourceBundles>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2010-05-03 13:01:51 -04:00
|
|
|
<!-- source maven plugin creates the source bundle and adds manifest -->
|
|
|
|
<plugin>
|
|
|
|
<inherited>true</inherited>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<phase>process-classes</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifestEntries>
|
|
|
|
<Bundle-ManifestVersion>2</Bundle-ManifestVersion>
|
2010-05-27 08:38:19 -04:00
|
|
|
<Bundle-Name>${project.name}</Bundle-Name>
|
2010-05-03 13:01:51 -04:00
|
|
|
<Bundle-SymbolicName>${bundle-symbolic-name}.source;singleton:=true</Bundle-SymbolicName>
|
|
|
|
<Bundle-Vendor>Eclipse.org - Jetty</Bundle-Vendor>
|
|
|
|
<Bundle-Version>${parsedVersion.osgiVersion}</Bundle-Version>
|
|
|
|
<Eclipse-SourceBundle>${bundle-symbolic-name};version="${parsedVersion.osgiVersion}";roots:="."</Eclipse-SourceBundle>
|
|
|
|
</manifestEntries>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2010-03-30 14:45:31 -04:00
|
|
|
<!-- Build helper maven plugin sets the parsedVersion.osgiVersion property -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>set-osgi-version</id>
|
2010-05-04 17:24:45 -04:00
|
|
|
<phase>validate</phase>
|
2010-03-30 14:45:31 -04:00
|
|
|
<goals>
|
|
|
|
<goal>parse-version</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2010-04-27 10:35:42 -04:00
|
|
|
</plugin>
|
2010-05-14 18:37:57 -04:00
|
|
|
<!-- Enforcer Plugin -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>enforce-java</id>
|
|
|
|
<goals>
|
|
|
|
<goal>enforce</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<rules>
|
|
|
|
<requireMavenVersion>
|
|
|
|
<version>[2.0.6,)</version>
|
|
|
|
</requireMavenVersion>
|
|
|
|
<requireJavaVersion>
|
|
|
|
<version>[1.5,)</version>
|
|
|
|
</requireJavaVersion>
|
|
|
|
<versionTxtRule implementation="org.eclipse.jetty.toolchain.enforcer.rules.VersionTxtRule" />
|
|
|
|
<versionOsgiRule implementation="org.eclipse.jetty.toolchain.enforcer.rules.RequireOsgiCompatibleVersionRule" />
|
|
|
|
<versionRedhatRule implementation="org.eclipse.jetty.toolchain.enforcer.rules.RequireRedhatCompatibleVersionRule" />
|
|
|
|
<versionDebianRule implementation="org.eclipse.jetty.toolchain.enforcer.rules.RequireDebianCompatibleVersionRule" />
|
|
|
|
</rules>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
2010-05-26 14:07:21 -04:00
|
|
|
<artifactId>jetty-build-support</artifactId>
|
|
|
|
<version>${build-support-version}</version>
|
2010-05-14 18:37:57 -04:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
2010-06-16 13:21:50 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-pmd-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<targetJdk>1.5</targetJdk>
|
|
|
|
<rulesets>
|
|
|
|
<ruleset>jetty/pmd_ruleset.xml</ruleset>
|
|
|
|
</rulesets>
|
|
|
|
</configuration>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-build-support</artifactId>
|
|
|
|
<version>${build-support-version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
2009-04-01 14:06:52 -04:00
|
|
|
</plugins>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
2010-05-03 13:02:09 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifestEntries>
|
|
|
|
<Implementation-Version>${project.version}</Implementation-Version>
|
|
|
|
<Implementation-Vendor>Eclipse.org - Jetty</Implementation-Vendor>
|
|
|
|
<url>${jetty.url}</url>
|
|
|
|
</manifestEntries>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<failIfNoTests>false</failIfNoTests>
|
2011-03-03 22:58:19 -05:00
|
|
|
<systemProperties>
|
|
|
|
<property>
|
|
|
|
<name>org.eclipse.jetty.io.AbstractBuffer.boundsChecking</name>
|
|
|
|
<value>true</value>
|
|
|
|
</property>
|
|
|
|
</systemProperties>
|
2010-05-03 13:02:09 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<instructions>
|
|
|
|
<Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment>
|
|
|
|
<Bundle-DocURL>${jetty.url}</Bundle-DocURL>
|
|
|
|
<Bundle-Vendor>Eclipse Jetty Project</Bundle-Vendor>
|
|
|
|
<Bundle-Localization>plugin</Bundle-Localization>
|
|
|
|
<Bundle-Classpath>.</Bundle-Classpath>
|
2011-05-17 21:52:37 -04:00
|
|
|
<Export-Package>${bundle-symbolic-name}.*;version="${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}"</Export-Package>
|
2010-05-03 13:02:09 -04:00
|
|
|
<Bundle-Copyright>Copyright (c) 2008-2009 Mort Bay Consulting Pty. Ltd.</Bundle-Copyright>
|
|
|
|
<_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2009-03-31 18:23:19 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-assembly-descriptors</artifactId>
|
2009-04-01 01:05:52 -04:00
|
|
|
<version>1.0</version>
|
2009-03-31 18:23:19 -04:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2010-05-03 13:02:09 -04:00
|
|
|
</plugin>
|
2010-05-24 18:15:48 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
2011-05-19 10:32:49 -04:00
|
|
|
<version>2.3.2</version>
|
2010-05-24 18:15:48 -04:00
|
|
|
<configuration>
|
|
|
|
<findbugsXmlOutput>true</findbugsXmlOutput>
|
|
|
|
<xmlOutput>true</xmlOutput>
|
2010-05-25 14:27:09 -04:00
|
|
|
<effort>Max</effort>
|
2010-05-24 18:15:48 -04:00
|
|
|
<onlyAnalyze>org.eclipse.jetty.*</onlyAnalyze>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2011-02-15 09:35:16 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
</plugin>
|
2011-05-19 10:32:49 -04:00
|
|
|
<plugin>
|
2011-05-25 19:05:29 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jxr-plugin</artifactId>
|
|
|
|
<version>2.2</version>
|
2011-05-19 10:32:49 -04:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2011-05-25 19:05:29 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>2.8</version>
|
2011-05-19 10:32:49 -04:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2011-05-25 19:05:29 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-pmd-plugin</artifactId>
|
|
|
|
<version>2.5</version>
|
2011-05-19 10:32:49 -04:00
|
|
|
</plugin>
|
2009-03-24 17:07:27 -04:00
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
2010-06-16 13:21:50 -04:00
|
|
|
<reporting>
|
2011-05-19 10:32:49 -04:00
|
|
|
|
2010-06-16 13:21:50 -04:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jxr-plugin</artifactId>
|
2011-05-19 10:32:49 -04:00
|
|
|
<version>2.2</version>
|
2010-06-16 13:21:50 -04:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2011-05-19 10:32:49 -04:00
|
|
|
<version>2.8</version>
|
2010-06-16 13:21:50 -04:00
|
|
|
<configuration>
|
2011-02-15 09:35:16 -05:00
|
|
|
<maxmemory>512m</maxmemory>
|
|
|
|
<docfilessubdirs>true</docfilessubdirs>
|
|
|
|
<detectLinks>true</detectLinks>
|
|
|
|
<detectJavaApiLink>true</detectJavaApiLink>
|
2010-06-16 13:21:50 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-pmd-plugin</artifactId>
|
2011-05-19 10:32:49 -04:00
|
|
|
<version>2.5</version>
|
2010-06-16 13:21:50 -04:00
|
|
|
<configuration>
|
|
|
|
<targetJdk>1.5</targetJdk>
|
|
|
|
<rulesets>
|
|
|
|
<ruleset>jetty/pmd_ruleset.xml</ruleset>
|
|
|
|
</rulesets>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
2011-05-19 10:32:49 -04:00
|
|
|
<version>2.3.2</version>
|
2010-06-16 13:21:50 -04:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</reporting>
|
2010-05-24 18:40:14 -04:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</snapshots>
|
|
|
|
<id>sonatype-snapshots</id>
|
|
|
|
<name>Sonatype Jetty Snapshots</name>
|
|
|
|
<url>http://oss.sonatype.org/content/groups/jetty</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2009-03-24 17:07:27 -04:00
|
|
|
<modules>
|
|
|
|
<module>jetty-util</module>
|
2011-01-06 13:04:58 -05:00
|
|
|
<module>jetty-jmx</module>
|
2009-03-24 17:07:27 -04:00
|
|
|
<module>jetty-io</module>
|
|
|
|
<module>jetty-http</module>
|
2009-11-08 20:22:06 -05:00
|
|
|
<module>jetty-websocket</module>
|
2009-03-28 22:15:22 -04:00
|
|
|
<module>jetty-continuation</module>
|
2009-03-24 17:07:27 -04:00
|
|
|
<module>jetty-server</module>
|
|
|
|
<module>jetty-client</module>
|
|
|
|
<module>jetty-xml</module>
|
|
|
|
<module>jetty-security</module>
|
2009-05-25 21:16:27 -04:00
|
|
|
<module>jetty-jaspi</module>
|
2009-03-24 17:07:27 -04:00
|
|
|
<module>jetty-servlet</module>
|
|
|
|
<module>jetty-webapp</module>
|
|
|
|
<module>jetty-servlets</module>
|
2010-04-20 04:49:19 -04:00
|
|
|
<module>jetty-jsp-2.1</module>
|
2009-03-24 17:07:27 -04:00
|
|
|
<module>jetty-deploy</module>
|
|
|
|
<module>jetty-ajp</module>
|
|
|
|
<module>jetty-jndi</module>
|
2009-03-28 22:15:22 -04:00
|
|
|
<module>jetty-annotations</module>
|
2009-03-24 17:07:27 -04:00
|
|
|
<module>jetty-plus</module>
|
|
|
|
<module>jetty-rewrite</module>
|
2009-06-11 17:00:51 -04:00
|
|
|
<module>jetty-policy</module>
|
2009-05-26 19:58:18 -04:00
|
|
|
<module>jetty-start</module>
|
2011-03-31 03:30:08 -04:00
|
|
|
<module>jetty-nested</module>
|
2011-04-06 05:30:00 -04:00
|
|
|
<module>jetty-overlay-deployer</module>
|
2009-05-27 21:30:36 -04:00
|
|
|
<module>test-continuation</module>
|
2009-06-25 20:29:07 -04:00
|
|
|
<module>test-continuation-jetty6</module>
|
2009-05-25 21:16:27 -04:00
|
|
|
<module>test-jetty-servlet</module>
|
|
|
|
<module>test-jetty-webapp</module>
|
2011-04-04 01:19:17 -04:00
|
|
|
<module>test-jetty-nested</module>
|
2009-05-25 21:16:27 -04:00
|
|
|
<module>example-jetty-embedded</module>
|
2009-07-08 19:18:49 -04:00
|
|
|
<module>tests</module>
|
2009-03-24 17:07:27 -04:00
|
|
|
</modules>
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2009-04-01 01:05:52 -04:00
|
|
|
<groupId>javax.servlet</groupId>
|
2009-03-24 17:07:27 -04:00
|
|
|
<artifactId>servlet-api</artifactId>
|
2009-04-01 01:05:52 -04:00
|
|
|
<version>2.5</version>
|
2009-03-24 17:07:27 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-plugin-tools-api</artifactId>
|
|
|
|
<version>2.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2011-01-28 13:58:47 -05:00
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
2011-04-05 15:43:41 -04:00
|
|
|
<version>${jetty.test.helper}</version>
|
2009-03-24 17:07:27 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>jcl104-over-slf4j</artifactId>
|
|
|
|
<version>${slf4j-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
<version>${slf4j-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>${slf4j-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-jta_1.1_spec</artifactId>
|
2010-05-05 14:58:22 -04:00
|
|
|
<version>${javax-transaction-version}</version>
|
2009-03-24 17:07:27 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.mail</groupId>
|
|
|
|
<artifactId>mail</artifactId>
|
2010-05-05 14:58:22 -04:00
|
|
|
<version>${javax-mail-version}</version>
|
2009-03-24 17:07:27 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.activation</groupId>
|
|
|
|
<artifactId>activation</artifactId>
|
2010-05-05 14:58:22 -04:00
|
|
|
<version>${javax-activation-version}</version>
|
2009-03-24 17:07:27 -04:00
|
|
|
</dependency>
|
2011-01-28 13:58:47 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2011-05-25 19:05:29 -04:00
|
|
|
<version>${junit-version}</version>
|
2011-01-28 13:58:47 -05:00
|
|
|
</dependency>
|
2009-03-24 17:07:27 -04:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2010-04-27 10:35:42 -04:00
|
|
|
<!--
|
2009-04-10 14:43:18 -04:00
|
|
|
Usage:
|
|
|
|
configure settings.xml for jetty.eclipse.website server entry
|
|
|
|
> mvn -Paggregate-site javadoc:aggregate jxr:jxr
|
|
|
|
> mvn -N site:deploy
|
2009-11-24 22:24:13 -05:00
|
|
|
or
|
|
|
|
> mvn -N site:sshdeploy (for ssh users w/passphrase and ssh-agent)
|
2009-04-10 14:43:18 -04:00
|
|
|
-->
|
2009-04-10 14:40:51 -04:00
|
|
|
<profiles>
|
2011-02-10 11:13:04 -05:00
|
|
|
<profile>
|
|
|
|
<!--
|
|
|
|
Moves the jetty-aggregate build tree to a profile called 'aggregates'.
|
|
|
|
It is active by default, but being in a profile allows it to be
|
|
|
|
disabled via the "-P-aggregates" command line on maven.
|
|
|
|
(Useful for running site plugin with deep reporting and avoiding
|
|
|
|
duplicate hits on aggregated classes) -->
|
|
|
|
<id>aggregates</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>true</activeByDefault>
|
2011-02-15 09:35:21 -05:00
|
|
|
<file>
|
|
|
|
<exists>${basedir}/pom.xml</exists>
|
|
|
|
</file>
|
2011-02-10 11:13:04 -05:00
|
|
|
</activation>
|
|
|
|
<modules>
|
|
|
|
<module>jetty-aggregate</module>
|
2011-02-10 11:13:05 -05:00
|
|
|
<module>jetty-distribution</module>
|
2011-02-10 11:13:04 -05:00
|
|
|
</modules>
|
|
|
|
</profile>
|
2011-02-09 17:45:04 -05:00
|
|
|
<profile>
|
|
|
|
<!--
|
|
|
|
Moves the jetty-osgi build tree to a profile called 'osgi'.
|
|
|
|
It is active by default, but being in a profile allows it to be
|
|
|
|
disabled via the "-P-osgi" command line on maven (if need be).
|
|
|
|
-->
|
|
|
|
<id>osgi</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>true</activeByDefault>
|
2011-02-15 09:35:21 -05:00
|
|
|
<file>
|
|
|
|
<exists>${basedir}/pom.xml</exists>
|
|
|
|
</file>
|
2011-02-09 17:45:04 -05:00
|
|
|
</activation>
|
|
|
|
<modules>
|
|
|
|
<module>jetty-osgi</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
2011-02-09 17:45:03 -05:00
|
|
|
<profile>
|
|
|
|
<id>cobertura</id>
|
|
|
|
<reporting>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>cobertura-maven-plugin</artifactId>
|
2011-02-15 09:35:16 -05:00
|
|
|
<configuration>
|
|
|
|
<maxmem>512m</maxmem>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<reportSets>
|
|
|
|
<reportSet>
|
|
|
|
<id>just-javadoc-no-aggregate</id>
|
|
|
|
<reports>
|
|
|
|
<report>javadoc</report>
|
|
|
|
</reports>
|
|
|
|
<inherited>true</inherited>
|
|
|
|
<configuration>
|
|
|
|
<minmemory>256m</minmemory>
|
|
|
|
<maxmemory>1g</maxmemory>
|
|
|
|
<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>
|
|
|
|
<tags>
|
|
|
|
<tag>
|
|
|
|
<name>org.apache.xbean.XBean</name>
|
|
|
|
<placement>X</placement>
|
|
|
|
<head />
|
|
|
|
</tag>
|
|
|
|
</tags>
|
|
|
|
</configuration>
|
|
|
|
</reportSet>
|
|
|
|
</reportSets>
|
2011-02-09 17:45:03 -05:00
|
|
|
</plugin>
|
2011-02-15 09:35:16 -05:00
|
|
|
</plugins>
|
2011-02-09 17:45:03 -05:00
|
|
|
</reporting>
|
2011-02-15 09:35:16 -05:00
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<testFailureIgnore>true</testFailureIgnore>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
2011-02-09 17:45:03 -05:00
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>maven-3</id>
|
|
|
|
<activation>
|
|
|
|
<file>
|
|
|
|
<!-- This employs that the basedir expression is only recognized by Maven 3.x (see MNG-2363) -->
|
|
|
|
<exists>${basedir}</exists>
|
|
|
|
</file>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-descriptor</id>
|
|
|
|
<goals>
|
|
|
|
<goal>attach-descriptor</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2009-04-10 14:40:51 -04:00
|
|
|
<profile>
|
|
|
|
<id>aggregate-site</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2010-05-03 13:02:09 -04:00
|
|
|
<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>
|
2010-05-26 23:55:16 -04:00
|
|
|
<tags>
|
|
|
|
<tag>
|
|
|
|
<name>org.apache.xbean.XBean</name>
|
2010-06-09 21:36:00 -04:00
|
|
|
<placement>X</placement>
|
2010-06-09 15:05:43 -04:00
|
|
|
<head />
|
2010-05-26 23:55:16 -04:00
|
|
|
</tag>
|
|
|
|
</tags>
|
2010-05-03 13:02:09 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2009-04-10 14:40:51 -04:00
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2010-06-09 21:36:00 -04:00
|
|
|
</project>
|