2009-03-24 21:07:27 +00: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>
|
2014-10-16 15:31:24 +02:00
|
|
|
<version>23</version>
|
2009-03-24 21:07:27 +00:00
|
|
|
</parent>
|
|
|
|
<artifactId>jetty-project</artifactId>
|
2014-06-16 21:33:03 +02:00
|
|
|
<version>9.3.0-SNAPSHOT</version>
|
2009-03-24 21:07:27 +00:00
|
|
|
<name>Jetty :: Project</name>
|
2013-05-21 13:10:07 -05:00
|
|
|
<url>http://www.eclipse.org/jetty</url>
|
2009-03-24 21:07:27 +00:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
<properties>
|
2012-01-31 15:21:58 -07:00
|
|
|
<jetty.url>http://www.eclipse.org/jetty</jetty.url>
|
2013-05-21 13:10:07 -05:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2011-08-28 09:52:10 -07:00
|
|
|
<build-support-version>1.1</build-support-version>
|
2014-06-03 15:34:21 -07:00
|
|
|
<slf4j-version>1.6.6</slf4j-version>
|
2012-01-31 15:21:58 -07:00
|
|
|
<jetty-test-policy-version>1.2</jetty-test-policy-version>
|
2014-10-13 21:27:11 +02:00
|
|
|
<npn.api.version>1.1.1.v20141010</npn.api.version>
|
2014-10-16 15:31:24 +02:00
|
|
|
<alpn.api.version>1.1.0.v20141014</alpn.api.version>
|
2014-03-25 15:47:15 -07:00
|
|
|
<!-- default values are unsupported, but required to be defined for reactor sanity reasons -->
|
2014-04-01 13:09:49 -07:00
|
|
|
<npn.version>undefined</npn.version>
|
|
|
|
<alpn.version>undefined</alpn.version>
|
2009-08-17 23:03:00 +00:00
|
|
|
</properties>
|
2009-03-24 21:07:27 +00:00
|
|
|
<scm>
|
2011-07-06 13:20:44 -05:00
|
|
|
<connection>scm:git:http://git.eclipse.org/gitroot/jetty/org.eclipse.jetty.project.git</connection>
|
|
|
|
<developerConnection>scm:git:ssh://git.eclipse.org/gitroot/jetty/org.eclipse.jetty.project.git</developerConnection>
|
2011-07-06 13:33:16 -05:00
|
|
|
<url>http://git.eclipse.org/c/jetty/org.eclipse.jetty.project.git/tree</url>
|
2014-07-23 11:18:01 -07:00
|
|
|
<tag>HEAD</tag>
|
2009-03-24 21:07:27 +00:00
|
|
|
</scm>
|
|
|
|
<build>
|
|
|
|
<defaultGoal>install</defaultGoal>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2014-12-11 16:15:12 -07:00
|
|
|
<version>3.2</version>
|
2009-03-24 21:07:27 +00:00
|
|
|
<configuration>
|
2012-02-07 11:32:00 +11:00
|
|
|
<source>1.7</source>
|
|
|
|
<target>1.7</target>
|
2009-03-24 21:07:27 +00:00
|
|
|
<verbose>false</verbose>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
2014-07-23 09:33:10 -07:00
|
|
|
<version>2.5</version>
|
2009-03-24 21:07:27 +00:00
|
|
|
<configuration>
|
2010-05-26 18:43:25 +00:00
|
|
|
<autoVersionSubmodules>true</autoVersionSubmodules>
|
2009-03-24 21:07:27 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2010-05-03 17:02:09 +00: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>
|
2012-08-07 08:57:26 -05:00
|
|
|
<resourceBundle>org.eclipse.jetty.toolchain:jetty-artifact-remote-resources:1.1</resourceBundle>
|
2010-05-03 17:02:09 +00:00
|
|
|
</resourceBundles>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2010-05-03 17:01:51 +00: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 12:38:19 +00:00
|
|
|
<Bundle-Name>${project.name}</Bundle-Name>
|
2014-12-12 13:40:33 +01:00
|
|
|
<Bundle-SymbolicName>${bundle-symbolic-name}.source</Bundle-SymbolicName>
|
2010-05-03 17:01:51 +00:00
|
|
|
<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 18:45:31 +00: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>
|
2012-05-08 18:16:53 +02:00
|
|
|
<phase>validate</phase>
|
2010-03-30 18:45:31 +00:00
|
|
|
<goals>
|
|
|
|
<goal>parse-version</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2010-04-27 14:35:42 +00:00
|
|
|
</plugin>
|
2011-08-30 12:20:01 -07:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-version-maven-plugin</artifactId>
|
|
|
|
<executions>
|
2011-08-19 14:11:12 -05:00
|
|
|
<execution>
|
2011-08-30 12:20:01 -07:00
|
|
|
<id>attach-version</id>
|
|
|
|
<phase>process-resources</phase>
|
2011-08-19 14:11:12 -05:00
|
|
|
<goals>
|
2011-08-30 12:20:01 -07:00
|
|
|
<goal>attach-version-text</goal>
|
2011-08-19 14:11:12 -05:00
|
|
|
</goals>
|
2010-03-30 18:45:31 +00:00
|
|
|
</execution>
|
|
|
|
</executions>
|
2010-04-27 14:35:42 +00:00
|
|
|
</plugin>
|
2010-05-14 22:37:57 +00:00
|
|
|
<!-- Enforcer Plugin -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
2013-12-12 14:46:40 -07:00
|
|
|
<version>1.1</version>
|
2010-05-14 22:37:57 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>enforce-java</id>
|
|
|
|
<goals>
|
|
|
|
<goal>enforce</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<rules>
|
|
|
|
<requireMavenVersion>
|
2012-06-26 11:26:56 -07:00
|
|
|
<version>[3.0.0,)</version>
|
2014-03-25 15:47:15 -07:00
|
|
|
<message>[ERROR] OLD MAVEN [${maven.version}] in use, Jetty ${project.version} requires Maven 3.0.0 or newer</message>
|
2010-05-14 22:37:57 +00:00
|
|
|
</requireMavenVersion>
|
|
|
|
<requireJavaVersion>
|
2014-03-25 15:47:15 -07:00
|
|
|
<version>[1.7.0-40,)</version>
|
|
|
|
<message>[ERROR] OLD JDK [${java.version}] in use. Jetty ${project.version} requires JDK 1.7.0_40 or newer</message>
|
2010-05-14 22:37:57 +00:00
|
|
|
</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" />
|
2012-01-31 15:21:58 -07:00
|
|
|
</rules>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2012-09-20 11:42:21 -07:00
|
|
|
<execution>
|
2013-08-05 09:13:32 -07:00
|
|
|
<id>ban-junit-dep.jar</id>
|
2012-09-20 11:42:21 -07:00
|
|
|
<goals>
|
|
|
|
<goal>enforce</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<rules>
|
|
|
|
<bannedDependencies>
|
|
|
|
<excludes>
|
2013-08-05 09:13:32 -07:00
|
|
|
<exclude>junit:junit-dep:*:jar</exclude>
|
2012-09-20 11:42:21 -07:00
|
|
|
</excludes>
|
|
|
|
<searchTransitive>true</searchTransitive>
|
2013-08-05 09:13:32 -07:00
|
|
|
<message>We use junit.jar, not junit-dep.jar (as of junit 4.11, hamcrest is no longer embedded)</message>
|
2012-09-20 11:42:21 -07:00
|
|
|
</bannedDependencies>
|
|
|
|
</rules>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2010-05-14 22:37:57 +00:00
|
|
|
</executions>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
2010-05-26 18:07:21 +00:00
|
|
|
<artifactId>jetty-build-support</artifactId>
|
|
|
|
<version>${build-support-version}</version>
|
2010-05-14 22:37:57 +00:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
2010-06-16 17:21:50 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-pmd-plugin</artifactId>
|
2011-08-24 09:52:07 -07:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>named-logging-enforcement</id>
|
|
|
|
<phase>compile</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<verbose>true</verbose>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2010-06-16 17:21:50 +00:00
|
|
|
<configuration>
|
2012-06-12 12:32:28 -07:00
|
|
|
<targetJdk>1.7</targetJdk>
|
2010-06-16 17:21:50 +00:00
|
|
|
<rulesets>
|
2011-08-24 09:52:07 -07:00
|
|
|
<ruleset>jetty/pmd_logging_ruleset.xml</ruleset>
|
2010-06-16 17:21:50 +00:00
|
|
|
</rulesets>
|
|
|
|
</configuration>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-build-support</artifactId>
|
|
|
|
<version>${build-support-version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
2012-11-05 10:39:52 -07:00
|
|
|
<plugin>
|
|
|
|
<inherited>false</inherited>
|
|
|
|
<groupId>com.mycila.maven-license-plugin</groupId>
|
|
|
|
<artifactId>maven-license-plugin</artifactId>
|
|
|
|
<version>1.10.b1</version>
|
|
|
|
<configuration>
|
|
|
|
<header>header-template.txt</header>
|
|
|
|
<failIfMissing>true</failIfMissing>
|
|
|
|
<aggregate>true</aggregate>
|
|
|
|
<strictCheck>true</strictCheck>
|
|
|
|
<properties>
|
2015-01-07 17:03:30 -07:00
|
|
|
<copyright-range>${project.inceptionYear}-2015</copyright-range>
|
2012-11-05 10:39:52 -07:00
|
|
|
</properties>
|
|
|
|
<mapping>
|
|
|
|
<java>DOUBLESLASH_STYLE</java>
|
|
|
|
</mapping>
|
|
|
|
<includes>
|
|
|
|
<include>**/*.java</include>
|
|
|
|
</includes>
|
|
|
|
<excludes>
|
|
|
|
<exclude>jetty-util/src/main/java/org/eclipse/jetty/util/security/UnixCrypt.java</exclude>
|
|
|
|
<exclude>jetty-policy/src/main/java/org/eclipse/jetty/policy/loader/DefaultPolicyLoader.java</exclude>
|
|
|
|
<exclude>jetty-policy/src/main/java/org/eclipse/jetty/policy/loader/PolicyFileScanner.java</exclude>
|
2013-01-11 17:04:53 -06:00
|
|
|
<exclude>jetty-ant/**</exclude>
|
2012-11-05 10:39:52 -07:00
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>check-headers</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2014-08-15 19:35:49 +10:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>manifest</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
2009-04-01 18:06:52 +00:00
|
|
|
</plugins>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
2011-08-19 12:13:54 -07:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-version-maven-plugin</artifactId>
|
2013-03-14 16:52:52 -07:00
|
|
|
<version>1.0.10</version>
|
2011-08-19 12:13:54 -07:00
|
|
|
</plugin>
|
2010-05-03 17:02:09 +00: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>
|
2014-06-25 15:15:20 -07:00
|
|
|
<version>2.17</version>
|
2010-05-03 17:02:09 +00:00
|
|
|
<configuration>
|
2013-04-09 18:36:09 +02:00
|
|
|
<argLine>-showversion -Xmx1g -Xms1g -XX:+PrintGCDetails</argLine>
|
2010-05-03 17:02:09 +00:00
|
|
|
<failIfNoTests>false</failIfNoTests>
|
2014-06-25 15:15:20 -07:00
|
|
|
<runMode>random</runMode>
|
2014-06-03 09:40:04 -07:00
|
|
|
<systemProperties>
|
|
|
|
<!--
|
2011-03-04 03:58:19 +00:00
|
|
|
<property>
|
|
|
|
<name>org.eclipse.jetty.io.AbstractBuffer.boundsChecking</name>
|
|
|
|
<value>true</value>
|
|
|
|
</property>
|
2014-06-03 09:40:04 -07:00
|
|
|
-->
|
|
|
|
<property>
|
|
|
|
<name>java.io.tmpdir</name>
|
|
|
|
<value>${project.build.directory}</value>
|
|
|
|
</property>
|
|
|
|
</systemProperties>
|
2010-05-03 17:02:09 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
2014-08-15 19:35:49 +10:00
|
|
|
<supportedProjectTypes>
|
|
|
|
<supportedProjectType>jar</supportedProjectType>
|
|
|
|
<supportedProjectType>maven-plugin</supportedProjectType>
|
|
|
|
</supportedProjectTypes>
|
2010-05-03 17:02:09 +00:00
|
|
|
<instructions>
|
2012-09-25 11:24:16 +08:00
|
|
|
<Bundle-SymbolicName>${bundle-symbolic-name}</Bundle-SymbolicName>
|
2014-08-15 19:35:49 +10:00
|
|
|
<Bundle-Description>Jetty module for ${project.name}</Bundle-Description>
|
2012-09-25 11:24:16 +08:00
|
|
|
<Bundle-RequiredExecutionEnvironment>JavaSE-1.7</Bundle-RequiredExecutionEnvironment>
|
2010-05-03 17:02:09 +00:00
|
|
|
<Bundle-DocURL>${jetty.url}</Bundle-DocURL>
|
|
|
|
<Bundle-Vendor>Eclipse Jetty Project</Bundle-Vendor>
|
|
|
|
<Bundle-Classpath>.</Bundle-Classpath>
|
2011-05-18 01:52:37 +00:00
|
|
|
<Export-Package>${bundle-symbolic-name}.*;version="${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}"</Export-Package>
|
2014-01-03 08:18:24 -07:00
|
|
|
<Bundle-Copyright>Copyright (c) 2008-2014 Mort Bay Consulting Pty. Ltd.</Bundle-Copyright>
|
2010-05-03 17:02:09 +00:00
|
|
|
<_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2009-03-31 22:23:19 +00: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 05:05:52 +00:00
|
|
|
<version>1.0</version>
|
2009-03-31 22:23:19 +00:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2010-05-03 17:02:09 +00:00
|
|
|
</plugin>
|
2010-05-24 22:15:48 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<findbugsXmlOutput>true</findbugsXmlOutput>
|
|
|
|
<xmlOutput>true</xmlOutput>
|
2010-05-25 18:27:09 +00:00
|
|
|
<effort>Max</effort>
|
2010-05-24 22:15:48 +00:00
|
|
|
<onlyAnalyze>org.eclipse.jetty.*</onlyAnalyze>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2011-02-15 14:35:16 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
</plugin>
|
2011-05-19 14:32:49 +00:00
|
|
|
<plugin>
|
2011-05-25 23:05:29 +00:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jxr-plugin</artifactId>
|
2011-05-19 14:32:49 +00:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2011-05-25 23:05:29 +00:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2011-09-08 10:29:27 -07:00
|
|
|
<configuration>
|
|
|
|
<docfilessubdirs>true</docfilessubdirs>
|
2012-02-06 10:01:44 -07:00
|
|
|
<detectLinks>false</detectLinks>
|
2011-09-08 10:29:27 -07:00
|
|
|
<detectJavaApiLink>true</detectJavaApiLink>
|
2013-08-14 12:14:47 -07:00
|
|
|
<excludePackageNames>com.acme.*;org.slf4j.*;org.mortbay.*</excludePackageNames>
|
2012-02-06 10:01:44 -07:00
|
|
|
<links>
|
2013-08-14 12:14:47 -07:00
|
|
|
<link>http://docs.oracle.com/javase/7/docs/api/</link>
|
|
|
|
<link>http://docs.oracle.com/javaee/7/api/</link>
|
|
|
|
<link>http://download.eclipse.org/jetty/stable-9/apidocs/</link>
|
|
|
|
<link>http://junit.sourceforge.net/javadoc/</link>
|
2012-02-06 10:01:44 -07:00
|
|
|
</links>
|
|
|
|
<tags>
|
|
|
|
<tag>
|
|
|
|
<name>org.apache.xbean.XBean</name>
|
2013-08-14 12:14:47 -07:00
|
|
|
<placement>X</placement>
|
|
|
|
<head />
|
2012-02-06 10:01:44 -07:00
|
|
|
</tag>
|
|
|
|
</tags>
|
2013-08-14 12:14:47 -07:00
|
|
|
<header>
|
|
|
|
<![CDATA[
|
|
|
|
<script type="text/javascript">
|
|
|
|
var _gaq = _gaq || [];
|
|
|
|
_gaq.push(['_setAccount', 'UA-1149868-7']);
|
|
|
|
_gaq.push(['_trackPageview']);
|
|
|
|
(function() {
|
|
|
|
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
|
|
|
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
|
|
|
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
|
|
|
})();
|
|
|
|
</script>
|
|
|
|
]]>
|
|
|
|
</header>
|
2013-02-04 08:59:37 -07:00
|
|
|
</configuration>
|
2011-05-19 14:32:49 +00:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2011-05-25 23:05:29 +00:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-pmd-plugin</artifactId>
|
2012-06-12 12:32:28 -07:00
|
|
|
<version>2.7.1</version>
|
2011-05-19 14:32:49 +00:00
|
|
|
</plugin>
|
2009-03-24 21:07:27 +00:00
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
2012-05-08 18:16:53 +02:00
|
|
|
<reporting>
|
2010-06-16 17:21:50 +00:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jxr-plugin</artifactId>
|
2011-10-06 08:24:58 -05:00
|
|
|
<version>2.1</version>
|
2010-06-16 17:21:50 +00:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2011-10-06 08:24:58 -05:00
|
|
|
<version>2.8</version>
|
2010-06-16 17:21:50 +00:00
|
|
|
<configuration>
|
2011-02-15 14:35:16 +00:00
|
|
|
<maxmemory>512m</maxmemory>
|
|
|
|
<docfilessubdirs>true</docfilessubdirs>
|
|
|
|
<detectLinks>true</detectLinks>
|
|
|
|
<detectJavaApiLink>true</detectJavaApiLink>
|
2010-06-16 17:21:50 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-pmd-plugin</artifactId>
|
2012-06-12 12:45:58 -07:00
|
|
|
<version>2.7.1</version>
|
2010-06-16 17:21:50 +00:00
|
|
|
<configuration>
|
2013-08-20 12:40:33 -05:00
|
|
|
<targetJdk>1.7</targetJdk>
|
2010-06-16 17:21:50 +00:00
|
|
|
<rulesets>
|
|
|
|
<ruleset>jetty/pmd_ruleset.xml</ruleset>
|
|
|
|
</rulesets>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
2013-02-22 12:57:22 -07:00
|
|
|
<version>2.5.2</version>
|
2010-06-16 17:21:50 +00:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</reporting>
|
2010-05-24 22:40:14 +00:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</snapshots>
|
|
|
|
<id>sonatype-snapshots</id>
|
|
|
|
<name>Sonatype Jetty Snapshots</name>
|
2014-04-01 13:09:49 -07:00
|
|
|
<url>https://oss.sonatype.org/content/groups/jetty</url>
|
2010-05-24 22:40:14 +00:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
2009-03-24 21:07:27 +00:00
|
|
|
<modules>
|
2012-11-15 13:38:53 -06:00
|
|
|
<module>jetty-ant</module>
|
2009-03-24 21:07:27 +00:00
|
|
|
<module>jetty-util</module>
|
2011-01-06 18:04:58 +00:00
|
|
|
<module>jetty-jmx</module>
|
2009-03-24 21:07:27 +00:00
|
|
|
<module>jetty-io</module>
|
|
|
|
<module>jetty-http</module>
|
2014-06-04 15:08:54 +02:00
|
|
|
<module>jetty-http2</module>
|
2009-03-29 02:15:22 +00:00
|
|
|
<module>jetty-continuation</module>
|
2009-03-24 21:07:27 +00:00
|
|
|
<module>jetty-server</module>
|
|
|
|
<module>jetty-xml</module>
|
|
|
|
<module>jetty-security</module>
|
|
|
|
<module>jetty-servlet</module>
|
2012-06-06 15:27:56 +02:00
|
|
|
<module>jetty-webapp</module>
|
2012-08-09 09:38:50 +10:00
|
|
|
<module>jetty-spdy</module>
|
2014-03-14 11:02:14 +01:00
|
|
|
<module>jetty-fcgi</module>
|
2012-06-06 15:27:56 +02:00
|
|
|
<module>jetty-websocket</module>
|
2012-07-13 22:55:40 +10:00
|
|
|
<module>jetty-servlets</module>
|
2012-07-23 14:08:35 +10:00
|
|
|
<module>jetty-util-ajax</module>
|
2014-03-14 16:54:03 +11:00
|
|
|
<module>jetty-jsp</module>
|
|
|
|
<module>apache-jsp</module>
|
|
|
|
<module>apache-jstl</module>
|
2012-10-18 11:16:15 -05:00
|
|
|
<module>jetty-maven-plugin</module>
|
|
|
|
<module>jetty-jspc-maven-plugin</module>
|
2012-08-09 09:38:50 +10:00
|
|
|
<module>jetty-deploy</module>
|
|
|
|
<module>jetty-start</module>
|
2012-08-21 16:56:35 -05:00
|
|
|
<module>jetty-plus</module>
|
|
|
|
<module>jetty-annotations</module>
|
|
|
|
<module>jetty-jndi</module>
|
2012-11-02 15:43:59 +11:00
|
|
|
<module>jetty-jaas</module>
|
2014-10-09 16:33:12 -07:00
|
|
|
<module>jetty-cdi</module>
|
2012-09-21 07:26:01 -05:00
|
|
|
<module>jetty-spring</module>
|
2012-09-06 08:45:29 +02:00
|
|
|
<module>jetty-client</module>
|
2012-11-23 16:25:31 +11:00
|
|
|
<module>jetty-proxy</module>
|
2012-11-12 17:05:43 -06:00
|
|
|
<module>jetty-jaspi</module>
|
2012-10-12 23:56:44 +11:00
|
|
|
<module>jetty-rewrite</module>
|
2012-10-26 17:09:53 +11:00
|
|
|
<module>jetty-nosql</module>
|
2012-11-05 13:53:54 -06:00
|
|
|
<module>tests</module>
|
2013-06-07 08:48:38 +10:00
|
|
|
<module>examples</module>
|
2014-03-31 11:35:06 +11:00
|
|
|
<module>jetty-quickstart</module>
|
2012-11-19 15:57:38 +11:00
|
|
|
<module>jetty-distribution</module>
|
2012-12-04 18:22:26 +11:00
|
|
|
<module>jetty-runner</module>
|
2013-03-22 19:13:13 -04:00
|
|
|
<module>jetty-monitor</module>
|
2013-07-26 11:40:12 +10:00
|
|
|
<module>jetty-http-spi</module>
|
2014-03-25 15:47:15 -07:00
|
|
|
<module>jetty-osgi</module>
|
2014-03-31 14:18:37 -07:00
|
|
|
<module>jetty-alpn</module>
|
2014-06-16 12:44:12 +02:00
|
|
|
<module>jetty-npn</module>
|
2012-10-12 23:56:44 +11:00
|
|
|
|
2012-08-29 14:59:50 -05:00
|
|
|
<!-- modules that need fixed and added back, or simply dropped and not maintained
|
|
|
|
<module>jetty-rhttp</module>
|
2012-02-07 11:32:00 +11:00
|
|
|
-->
|
2013-09-30 19:11:34 -05:00
|
|
|
<!--<module>jetty-overlay-deployer</module>-->
|
2009-03-24 21:07:27 +00:00
|
|
|
</modules>
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2012-09-07 13:46:51 +10:00
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
2013-06-21 18:41:35 +10:00
|
|
|
<version>3.1.0</version>
|
2013-08-14 12:14:47 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.websocket</groupId>
|
|
|
|
<artifactId>javax.websocket-api</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
</dependency>
|
2012-01-31 14:00:47 -07:00
|
|
|
<dependency>
|
2013-07-12 13:20:26 +10:00
|
|
|
<groupId>javax.annotation</groupId>
|
|
|
|
<artifactId>javax.annotation-api</artifactId>
|
|
|
|
<version>1.2</version>
|
2012-01-31 14:00:47 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2013-09-17 13:12:54 +10:00
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
|
<artifactId>asm</artifactId>
|
2014-03-25 08:59:23 -07:00
|
|
|
<version>5.0.1</version>
|
2013-09-17 13:12:54 +10:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
|
<artifactId>asm-commons</artifactId>
|
2014-03-25 08:59:23 -07:00
|
|
|
<version>5.0.1</version>
|
2012-01-31 14:00:47 -07:00
|
|
|
</dependency>
|
2013-09-17 13:12:54 +10:00
|
|
|
|
2012-01-31 14:00:47 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.orbit</groupId>
|
2012-02-01 08:59:00 -07:00
|
|
|
<artifactId>javax.security.auth.message</artifactId>
|
|
|
|
<version>1.0.0.v201108011116</version>
|
2012-01-31 14:00:47 -07:00
|
|
|
</dependency>
|
2013-06-21 18:41:35 +10:00
|
|
|
|
|
|
|
<!-- JSP Deps -->
|
2013-07-12 13:20:26 +10:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-schemas</artifactId>
|
2013-09-02 17:16:45 +10:00
|
|
|
<version>3.1.M0</version>
|
2013-07-12 13:20:26 +10:00
|
|
|
</dependency>
|
|
|
|
|
2013-05-09 17:17:46 +10:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet.jsp</groupId>
|
|
|
|
<artifactId>javax.servlet.jsp-api</artifactId>
|
|
|
|
<version>2.3.1</version>
|
|
|
|
</dependency>
|
|
|
|
|
2012-01-31 14:00:47 -07:00
|
|
|
<dependency>
|
2013-06-21 18:41:35 +10:00
|
|
|
<groupId>org.glassfish.web</groupId>
|
|
|
|
<artifactId>javax.servlet.jsp</artifactId>
|
|
|
|
<version>2.3.2</version>
|
2013-09-20 15:36:17 +10:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-jsp-jdt</artifactId>
|
|
|
|
<version>2.3.3</version>
|
2012-01-31 15:21:58 -07:00
|
|
|
</dependency>
|
2013-06-21 18:41:35 +10:00
|
|
|
|
|
|
|
|
2012-01-31 14:00:47 -07:00
|
|
|
<dependency>
|
2013-06-21 18:41:35 +10:00
|
|
|
<groupId>javax.el</groupId>
|
|
|
|
<artifactId>javax.el-api</artifactId>
|
|
|
|
<version>3.0.0</version>
|
2012-01-31 14:00:47 -07:00
|
|
|
</dependency>
|
2013-06-21 18:41:35 +10:00
|
|
|
|
2013-05-09 17:17:46 +10:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish</groupId>
|
|
|
|
<artifactId>javax.el</artifactId>
|
2013-06-21 18:41:35 +10:00
|
|
|
<version>3.0.0</version>
|
2013-05-09 17:17:46 +10:00
|
|
|
</dependency>
|
2013-06-21 18:41:35 +10:00
|
|
|
|
2014-03-14 16:54:03 +11:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mortbay.jasper</groupId>
|
|
|
|
<artifactId>apache-jsp</artifactId>
|
2014-09-05 20:19:45 +10:00
|
|
|
<version>8.0.9.M3</version>
|
2014-03-14 16:54:03 +11:00
|
|
|
</dependency>
|
|
|
|
|
2012-01-31 14:00:47 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.orbit</groupId>
|
2013-07-12 13:20:26 +10:00
|
|
|
<artifactId>org.eclipse.jdt.core</artifactId>
|
|
|
|
<version>3.8.2.v20130121</version>
|
|
|
|
<exclusions>
|
2013-06-21 18:41:35 +10:00
|
|
|
<exclusion>
|
|
|
|
<groupId>org.eclipse.jetty.orbit</groupId>
|
2013-07-12 13:20:26 +10:00
|
|
|
<artifactId>javax.servlet</artifactId>
|
|
|
|
</exclusion>
|
2013-06-21 18:41:35 +10:00
|
|
|
</exclusions>
|
2013-05-09 17:17:46 +10:00
|
|
|
</dependency>
|
2013-06-21 18:41:35 +10:00
|
|
|
|
2013-07-12 13:20:26 +10:00
|
|
|
<!-- JSTL Impl -->
|
|
|
|
<dependency>
|
2014-01-17 14:36:08 +11:00
|
|
|
<groupId>org.glassfish.web</groupId>
|
|
|
|
<artifactId>javax.servlet.jsp.jstl</artifactId>
|
|
|
|
<version>1.2.2</version>
|
2013-07-12 13:20:26 +10:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
2014-01-17 14:36:08 +11:00
|
|
|
<groupId>javax.servlet.jsp.jstl</groupId>
|
|
|
|
<artifactId>jstl-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>javax.servlet.jsp</groupId>
|
|
|
|
<artifactId>jsp-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>javax.el</groupId>
|
|
|
|
<artifactId>el-api</artifactId>
|
2013-07-12 13:20:26 +10:00
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
2014-03-14 16:54:03 +11:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.taglibs</groupId>
|
|
|
|
<artifactId>taglibs-standard-impl</artifactId>
|
|
|
|
<version>1.2.1</version>
|
|
|
|
</dependency>
|
|
|
|
|
2014-01-17 14:36:08 +11:00
|
|
|
<!-- JSTL API -->
|
2012-01-31 14:00:47 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.orbit</groupId>
|
2013-07-12 13:20:26 +10:00
|
|
|
<artifactId>javax.servlet.jsp.jstl</artifactId>
|
|
|
|
<version>1.2.0.v201105211821</version>
|
2013-05-09 17:17:46 +10:00
|
|
|
<exclusions>
|
2013-07-12 13:20:26 +10:00
|
|
|
<exclusion>
|
|
|
|
<groupId>org.eclipse.jetty.orbit</groupId>
|
|
|
|
<artifactId>javax.servlet</artifactId>
|
|
|
|
</exclusion>
|
2013-05-09 17:17:46 +10:00
|
|
|
<exclusion>
|
|
|
|
<groupId>org.eclipse.jetty.orbit</groupId>
|
|
|
|
<artifactId>javax.servlet.jsp</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2012-01-31 14:00:47 -07:00
|
|
|
</dependency>
|
2013-06-21 18:41:35 +10:00
|
|
|
|
2014-03-14 16:54:03 +11:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.taglibs</groupId>
|
|
|
|
<artifactId>taglibs-standard-spec</artifactId>
|
|
|
|
<version>1.2.1</version>
|
|
|
|
</dependency>
|
|
|
|
|
2013-07-12 13:20:26 +10:00
|
|
|
|
2012-01-31 14:00:47 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.orbit</groupId>
|
2013-07-12 13:20:26 +10:00
|
|
|
<artifactId>javax.activation</artifactId>
|
|
|
|
<version>1.1.0.v201105071233</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.orbit</groupId>
|
|
|
|
<artifactId>javax.mail.glassfish</artifactId>
|
|
|
|
<version>1.4.1.v201005082020</version>
|
2012-01-31 14:00:47 -07:00
|
|
|
</dependency>
|
|
|
|
|
2013-07-12 13:20:26 +10:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.transaction</groupId>
|
|
|
|
<artifactId>javax.transaction-api</artifactId>
|
|
|
|
<version>1.2</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
2012-01-31 14:00:47 -07:00
|
|
|
<!-- Old Deps -->
|
2009-03-24 21:07:27 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-plugin-tools-api</artifactId>
|
|
|
|
<version>2.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2011-01-28 18:58:47 +00:00
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
2014-02-06 16:47:40 +01:00
|
|
|
<version>2.7</version>
|
2009-03-24 21:07:27 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>jcl104-over-slf4j</artifactId>
|
|
|
|
<version>${slf4j-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
2011-08-16 16:23:41 -04:00
|
|
|
<artifactId>log4j-over-slf4j</artifactId>
|
2009-03-24 21:07:27 +00:00
|
|
|
<version>${slf4j-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>${slf4j-version}</version>
|
|
|
|
</dependency>
|
2011-01-28 18:58:47 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2013-08-02 14:25:53 -07:00
|
|
|
<version>4.11</version>
|
2012-09-20 11:42:21 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest-core</artifactId>
|
2013-08-02 14:25:53 -07:00
|
|
|
<version>1.3</version>
|
2011-01-28 18:58:47 +00:00
|
|
|
</dependency>
|
2012-05-08 18:16:53 +02:00
|
|
|
<dependency>
|
2012-07-26 10:38:55 -07:00
|
|
|
<groupId>org.hamcrest</groupId>
|
2012-09-20 11:42:21 -07:00
|
|
|
<artifactId>hamcrest-library</artifactId>
|
2013-08-02 14:25:53 -07:00
|
|
|
<version>1.3</version>
|
2012-05-08 18:16:53 +02:00
|
|
|
</dependency>
|
2011-09-30 11:54:35 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
2013-08-02 14:25:53 -07:00
|
|
|
<version>1.9.5</version>
|
2012-09-20 11:42:21 -07:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2011-09-30 11:54:35 +02:00
|
|
|
</dependency>
|
2009-03-24 21:07:27 +00:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2010-04-27 14:35:42 +00:00
|
|
|
<!--
|
2009-04-10 18:43:18 +00:00
|
|
|
Usage:
|
|
|
|
configure settings.xml for jetty.eclipse.website server entry
|
2013-01-22 08:32:32 -06:00
|
|
|
> mvn -Paggregate-site javadoc:aggregate jxr:jxr
|
|
|
|
then
|
2009-04-10 18:43:18 +00:00
|
|
|
> mvn -N site:deploy
|
2009-11-25 03:24:13 +00:00
|
|
|
or
|
|
|
|
> mvn -N site:sshdeploy (for ssh users w/passphrase and ssh-agent)
|
2009-04-10 18:43:18 +00:00
|
|
|
-->
|
2009-04-10 18:40:51 +00:00
|
|
|
<profiles>
|
2014-08-15 19:53:52 +10:00
|
|
|
<profile>
|
|
|
|
<id>config</id>
|
|
|
|
<activation>
|
|
|
|
<file>
|
|
|
|
<exists>src/main/config</exists>
|
|
|
|
</file>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<descriptorRefs>
|
|
|
|
<descriptorRef>config</descriptorRef>
|
|
|
|
</descriptorRefs>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2012-05-08 18:16:53 +02:00
|
|
|
<profile>
|
2012-12-26 15:24:32 -03:00
|
|
|
<id>eclipse-release</id>
|
2011-02-10 16:13:04 +00:00
|
|
|
<modules>
|
2012-12-21 11:01:17 -07:00
|
|
|
<module>aggregates/jetty-all</module>
|
2011-02-10 16:13:04 +00:00
|
|
|
</modules>
|
|
|
|
</profile>
|
2013-08-14 14:43:39 -05:00
|
|
|
<profile>
|
|
|
|
<id>ci</id>
|
|
|
|
<modules>
|
|
|
|
<module>aggregates/jetty-all</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
2011-08-19 12:13:54 -07:00
|
|
|
<profile>
|
|
|
|
<id>update-version</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-version-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>gen-versiontxt</id>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
2011-10-06 09:20:57 -05:00
|
|
|
<goal>update-version-text</goal>
|
2011-08-19 12:13:54 -07:00
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<refreshTags>true</refreshTags>
|
|
|
|
<copyGenerated>true</copyGenerated>
|
|
|
|
<attachArtifact>false</attachArtifact>
|
|
|
|
<updateDate>true</updateDate>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2011-02-09 22:45:03 +00:00
|
|
|
<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 18:40:51 +00:00
|
|
|
<profile>
|
|
|
|
<id>aggregate-site</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2010-05-03 17:02:09 +00: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>
|
2013-05-06 15:41:02 -07:00
|
|
|
<link>http://docs.oracle.com/javase/7/docs/api/</link>
|
2013-01-17 16:40:16 -07:00
|
|
|
<link>http://docs.oracle.com/javaee/6/api</link>
|
2010-05-03 17:02:09 +00:00
|
|
|
<link>http://junit.sourceforge.net/javadoc/</link>
|
|
|
|
</links>
|
2010-05-27 03:55:16 +00:00
|
|
|
<tags>
|
|
|
|
<tag>
|
|
|
|
<name>org.apache.xbean.XBean</name>
|
2010-06-10 01:36:00 +00:00
|
|
|
<placement>X</placement>
|
2010-06-09 19:05:43 +00:00
|
|
|
<head />
|
2010-05-27 03:55:16 +00:00
|
|
|
</tag>
|
|
|
|
</tags>
|
2013-01-25 11:26:25 -06:00
|
|
|
<header>
|
|
|
|
<![CDATA[
|
|
|
|
<script type="text/javascript">
|
|
|
|
var _gaq = _gaq || [];
|
|
|
|
_gaq.push(['_setAccount', 'UA-1149868-7']);
|
|
|
|
_gaq.push(['_trackPageview']);
|
|
|
|
(function() {
|
|
|
|
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
|
|
|
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
|
|
|
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
|
|
|
})();
|
|
|
|
</script>
|
|
|
|
]]>
|
2013-04-09 18:36:09 +02:00
|
|
|
</header>
|
2010-05-03 17:02:09 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2009-04-10 18:40:51 +00:00
|
|
|
</build>
|
|
|
|
</profile>
|
2014-12-11 15:12:59 -07:00
|
|
|
<profile>
|
|
|
|
<id>compact3</id>
|
2014-12-11 16:15:12 -07:00
|
|
|
<modules>
|
|
|
|
<module>aggregates/jetty-all-compact3</module>
|
|
|
|
</modules>
|
2014-12-11 15:12:59 -07:00
|
|
|
</profile>
|
2013-06-13 16:04:17 -07:00
|
|
|
<profile>
|
|
|
|
<id>api-change</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>clirr-maven-plugin</artifactId>
|
|
|
|
<version>2.5</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>compare-api</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>clirr</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<minSeverity>info</minSeverity>
|
|
|
|
<comparisonVersion>9.0.3.v20130506</comparisonVersion>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2014-03-18 23:58:05 +01:00
|
|
|
<profile>
|
|
|
|
<id>7u40</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>java.version</name>
|
|
|
|
<value>1.7.0_40</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<npn.version>1.1.6.v20130911</npn.version>
|
2014-10-16 15:31:24 +02:00
|
|
|
<alpn.version>7.1.0.v20141016</alpn.version>
|
2014-03-18 23:58:05 +01:00
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>7u45</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>java.version</name>
|
|
|
|
<value>1.7.0_45</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<npn.version>1.1.6.v20130911</npn.version>
|
2014-10-16 15:31:24 +02:00
|
|
|
<alpn.version>7.1.0.v20141016</alpn.version>
|
2014-03-18 23:58:05 +01:00
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>7u51</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>java.version</name>
|
|
|
|
<value>1.7.0_51</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<npn.version>1.1.6.v20130911</npn.version>
|
2014-10-16 15:31:24 +02:00
|
|
|
<alpn.version>7.1.0.v20141016</alpn.version>
|
2014-04-17 13:56:10 +02:00
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>7u55</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>java.version</name>
|
|
|
|
<value>1.7.0_55</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
2014-10-13 21:27:11 +02:00
|
|
|
<npn.version>1.1.8.v20141013</npn.version>
|
2014-10-16 15:31:24 +02:00
|
|
|
<alpn.version>7.1.0.v20141016</alpn.version>
|
2014-03-18 23:58:05 +01:00
|
|
|
</properties>
|
|
|
|
</profile>
|
2014-06-11 18:32:43 +02:00
|
|
|
<profile>
|
|
|
|
<id>7u60</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>java.version</name>
|
|
|
|
<value>1.7.0_60</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
2014-10-13 21:27:11 +02:00
|
|
|
<npn.version>1.1.8.v20141013</npn.version>
|
2014-10-16 15:31:24 +02:00
|
|
|
<alpn.version>7.1.0.v20141016</alpn.version>
|
2014-06-11 18:32:43 +02:00
|
|
|
</properties>
|
|
|
|
</profile>
|
2014-07-17 11:48:19 +02:00
|
|
|
<profile>
|
|
|
|
<id>7u65</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>java.version</name>
|
|
|
|
<value>1.7.0_65</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
2014-10-13 21:27:11 +02:00
|
|
|
<npn.version>1.1.8.v20141013</npn.version>
|
2014-10-16 15:31:24 +02:00
|
|
|
<alpn.version>7.1.0.v20141016</alpn.version>
|
2014-08-20 17:54:01 +10:00
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>7u67</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>java.version</name>
|
|
|
|
<value>1.7.0_67</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
2014-10-13 21:27:11 +02:00
|
|
|
<npn.version>1.1.8.v20141013</npn.version>
|
2014-10-16 15:31:24 +02:00
|
|
|
<alpn.version>7.1.0.v20141016</alpn.version>
|
2014-07-17 11:48:19 +02:00
|
|
|
</properties>
|
|
|
|
</profile>
|
2014-10-16 17:15:15 +02:00
|
|
|
<profile>
|
|
|
|
<id>7u71</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>java.version</name>
|
|
|
|
<value>1.7.0_71</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<npn.version>1.1.9.v20141016</npn.version>
|
2014-12-02 12:12:20 +01:00
|
|
|
<alpn.version>7.1.2.v20141202</alpn.version>
|
2014-10-16 17:15:15 +02:00
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>7u72</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>java.version</name>
|
|
|
|
<value>1.7.0_72</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<npn.version>1.1.9.v20141016</npn.version>
|
2014-12-02 12:12:20 +01:00
|
|
|
<alpn.version>7.1.2.v20141202</alpn.version>
|
2014-07-17 11:48:19 +02:00
|
|
|
</properties>
|
|
|
|
</profile>
|
2014-03-18 23:58:05 +01:00
|
|
|
<profile>
|
|
|
|
<id>8u00</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>java.version</name>
|
|
|
|
<value>1.8.0</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
2014-10-16 15:31:24 +02:00
|
|
|
<alpn.version>8.1.0.v20141016</alpn.version>
|
2014-03-18 23:58:05 +01:00
|
|
|
</properties>
|
|
|
|
</profile>
|
2014-04-16 11:06:34 +02:00
|
|
|
<profile>
|
2014-04-17 13:56:10 +02:00
|
|
|
<id>8u05</id>
|
2014-04-16 11:06:34 +02:00
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>java.version</name>
|
2014-04-17 13:56:10 +02:00
|
|
|
<value>1.8.0_05</value>
|
2014-04-16 11:06:34 +02:00
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
2014-10-16 15:31:24 +02:00
|
|
|
<alpn.version>8.1.0.v20141016</alpn.version>
|
2014-04-16 11:06:34 +02:00
|
|
|
</properties>
|
|
|
|
</profile>
|
2014-07-17 11:48:19 +02:00
|
|
|
<profile>
|
|
|
|
<id>8u11</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>java.version</name>
|
|
|
|
<value>1.8.0_11</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
2014-10-16 15:31:24 +02:00
|
|
|
<alpn.version>8.1.0.v20141016</alpn.version>
|
2014-07-17 11:48:19 +02:00
|
|
|
</properties>
|
|
|
|
</profile>
|
2014-08-21 12:19:23 +02:00
|
|
|
<profile>
|
|
|
|
<id>8u20</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>java.version</name>
|
|
|
|
<value>1.8.0_20</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
2014-10-16 15:31:24 +02:00
|
|
|
<alpn.version>8.1.0.v20141016</alpn.version>
|
2014-08-21 12:19:23 +02:00
|
|
|
</properties>
|
|
|
|
</profile>
|
2014-10-16 17:15:15 +02:00
|
|
|
<profile>
|
|
|
|
<id>8u25</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>java.version</name>
|
|
|
|
<value>1.8.0_25</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
2014-12-02 12:12:20 +01:00
|
|
|
<alpn.version>8.1.2.v20141202</alpn.version>
|
2014-08-21 12:19:23 +02:00
|
|
|
</properties>
|
|
|
|
</profile>
|
2009-04-10 18:40:51 +00:00
|
|
|
</profiles>
|
2010-06-10 01:36:00 +00:00
|
|
|
</project>
|
2013-06-17 10:00:04 -07:00
|
|
|
|