forked from pool/jetty-toolchain
497 lines
17 KiB
Plaintext
497 lines
17 KiB
Plaintext
|
<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>
|
||
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
||
|
<artifactId>jetty-toolchain</artifactId>
|
||
|
<version>1.7</version>
|
||
|
<name>Jetty Toolchain :: Parent</name>
|
||
|
<description>The Eclipse Jetty Toolchain Parent</description>
|
||
|
<packaging>pom</packaging>
|
||
|
<url>https://eclipse.org/jetty</url>
|
||
|
<inceptionYear>1995</inceptionYear>
|
||
|
|
||
|
<properties>
|
||
|
<jetty.url>http://www.eclipse.org/jetty</jetty.url>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<mavenPluginToolsVersion>3.5.2</mavenPluginToolsVersion>
|
||
|
<mavenVersion>3.5.0</mavenVersion>
|
||
|
<surefireVersion>3.0.0-M3</surefireVersion>
|
||
|
</properties>
|
||
|
|
||
|
<licenses>
|
||
|
<license>
|
||
|
<name>Apache Software License - Version 2.0</name>
|
||
|
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
|
||
|
</license>
|
||
|
<license>
|
||
|
<name>Eclipse Public License - Version 1.0</name>
|
||
|
<url>http://www.eclipse.org/org/documents/epl-v10.php</url>
|
||
|
</license>
|
||
|
</licenses>
|
||
|
|
||
|
<scm>
|
||
|
<connection>scm:git:https://github.com/eclipse/jetty.toolchain.git</connection>
|
||
|
<developerConnection>scm:git:git@github.com:eclipse/jetty.toolchain.git</developerConnection>
|
||
|
<url>https://github.com/eclipse/jetty.project</url>
|
||
|
<tag>jetty-toolchain-1.7</tag>
|
||
|
</scm>
|
||
|
|
||
|
<profiles>
|
||
|
<profile>
|
||
|
<id>jdk9</id>
|
||
|
<activation>
|
||
|
<jdk>[9,)</jdk>
|
||
|
</activation>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<release>8</release>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<additionalOptions>
|
||
|
<additionalOption>-html5</additionalOption>
|
||
|
</additionalOptions>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</profile>
|
||
|
|
||
|
<profile>
|
||
|
<id>eclipse-release</id>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<inherited>true</inherited>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-deploy-plugin</artifactId>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-source-plugin</artifactId>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>attach-sources</id>
|
||
|
<goals>
|
||
|
<goal>jar</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>attach-javadocs</id>
|
||
|
<goals>
|
||
|
<goal>jar</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-gpg-plugin</artifactId>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>sign-artifacts</id>
|
||
|
<phase>verify</phase>
|
||
|
<goals>
|
||
|
<goal>sign</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</profile>
|
||
|
|
||
|
<profile>
|
||
|
<id>errorprone</id>
|
||
|
<build>
|
||
|
<pluginManagement>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<showWarnings>true</showWarnings>
|
||
|
<compilerId>javac-with-errorprone</compilerId>
|
||
|
<forceJavacCompilerUse>true</forceJavacCompilerUse>
|
||
|
<compilerArgs>
|
||
|
<arg>-XepAllErrorsAsWarnings</arg>
|
||
|
<arg>-Xep:OperatorPrecedence:OFF</arg>
|
||
|
</compilerArgs>
|
||
|
</configuration>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.codehaus.plexus</groupId>
|
||
|
<artifactId>plexus-compiler-javac-errorprone</artifactId>
|
||
|
<version>2.8.2</version>
|
||
|
</dependency>
|
||
|
<!-- override plexus-compiler-javac-errorprone's dependency on
|
||
|
Error Prone with the latest version -->
|
||
|
<dependency>
|
||
|
<groupId>com.google.errorprone</groupId>
|
||
|
<artifactId>error_prone_core</artifactId>
|
||
|
<version>2.2.0</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</pluginManagement>
|
||
|
</build>
|
||
|
</profile>
|
||
|
</profiles>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-release-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<useReleaseProfile>false</useReleaseProfile>
|
||
|
<goals>deploy</goals>
|
||
|
<arguments>-Peclipse-release</arguments>
|
||
|
<preparationGoals>clean install</preparationGoals>
|
||
|
<mavenExecutorId>forked-path</mavenExecutorId>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
|
||
|
<pluginManagement>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>3.8.0</version>
|
||
|
<configuration>
|
||
|
<source>8</source>
|
||
|
<target>8</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-dependency-plugin</artifactId>
|
||
|
<version>3.1.1</version>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-deploy-plugin</artifactId>
|
||
|
<version>3.0.0-M1</version>
|
||
|
<configuration>
|
||
|
<retryFailedDeploymentCount>10</retryFailedDeploymentCount>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-failsafe-plugin</artifactId>
|
||
|
<version>${surefireVersion}</version>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-gpg-plugin</artifactId>
|
||
|
<version>1.6</version>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-invoker-plugin</artifactId>
|
||
|
<version>3.2.0</version>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-install-plugin</artifactId>
|
||
|
<version>3.0.0-M1</version>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-jar-plugin</artifactId>
|
||
|
<version>3.1.1</version>
|
||
|
<configuration>
|
||
|
<archive>
|
||
|
<!-- Only needed if bundle/OSGi built out a manifest first
|
||
|
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
|
||
|
-->
|
||
|
<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-javadoc-plugin</artifactId>
|
||
|
<version>3.1.0</version>
|
||
|
<configuration>
|
||
|
<failOnError>false</failOnError>
|
||
|
<charset>UTF-8</charset>
|
||
|
<docencoding>UTF-8</docencoding>
|
||
|
<encoding>UTF-8</encoding>
|
||
|
<docfilessubdirs>true</docfilessubdirs>
|
||
|
<detectLinks>false</detectLinks>
|
||
|
<detectJavaApiLink>false</detectJavaApiLink>
|
||
|
<show>protected</show>
|
||
|
<excludePackageNames>com.acme.*;org.slf4j.*;org.mortbay.*</excludePackageNames>
|
||
|
<tags>
|
||
|
<tag>
|
||
|
<name>org.apache.xbean.XBean</name>
|
||
|
<placement>X</placement>
|
||
|
<head />
|
||
|
</tag>
|
||
|
<tag>
|
||
|
<name>phase</name>
|
||
|
<placement>t</placement>
|
||
|
<head>Phase:</head>
|
||
|
</tag>
|
||
|
<tag>
|
||
|
<name>goal</name>
|
||
|
<placement>t</placement>
|
||
|
<head>Goal:</head>
|
||
|
</tag>
|
||
|
<tag>
|
||
|
<name>description</name>
|
||
|
<placement>a</placement>
|
||
|
<head>Description:</head>
|
||
|
</tag>
|
||
|
<tag>
|
||
|
<name>parameter</name>
|
||
|
<placement>f</placement>
|
||
|
<head>Parameter:</head>
|
||
|
</tag>
|
||
|
<tag>
|
||
|
<name>required</name>
|
||
|
<placement>f</placement>
|
||
|
<head>Required:</head>
|
||
|
</tag>
|
||
|
<tag>
|
||
|
<name>readonly</name>
|
||
|
<placement>f</placement>
|
||
|
<head>Read-Only:</head>
|
||
|
</tag>
|
||
|
<tag>
|
||
|
<name>execute</name>
|
||
|
<placement>X</placement>
|
||
|
<head />
|
||
|
</tag>
|
||
|
<tag>
|
||
|
<name>requiresDependencyResolution</name>
|
||
|
<placement>X</placement>
|
||
|
<head />
|
||
|
</tag>
|
||
|
<tag>
|
||
|
<name>requiresProject</name>
|
||
|
<placement>X</placement>
|
||
|
<head />
|
||
|
</tag>
|
||
|
<tag>
|
||
|
<name>threadSafe</name>
|
||
|
<placement>X</placement>
|
||
|
<head />
|
||
|
</tag>
|
||
|
<tag>
|
||
|
<name>component</name>
|
||
|
<placement>f</placement>
|
||
|
<head />
|
||
|
</tag>
|
||
|
<tag>
|
||
|
<name>implSpec</name>
|
||
|
<placement>m</placement>
|
||
|
<head />
|
||
|
</tag>
|
||
|
</tags>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-release-plugin</artifactId>
|
||
|
<version>2.5.3</version>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-source-plugin</artifactId>
|
||
|
<version>3.0.1</version>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||
|
<version>${surefireVersion}</version>
|
||
|
<configuration>
|
||
|
<forkedProcessTimeoutInSeconds>3600</forkedProcessTimeoutInSeconds>
|
||
|
<argLine>-Dfile.encoding=UTF-8 -Duser.language=en -Duser.region=US -showversion -Xmx1g -Xms1g -XX:+PrintGCDetails</argLine>
|
||
|
<failIfNoTests>false</failIfNoTests>
|
||
|
<forkCount>1</forkCount>
|
||
|
<systemPropertyVariables>
|
||
|
<java.io.tmpdir>${project.build.directory}</java.io.tmpdir>
|
||
|
</systemPropertyVariables>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</pluginManagement>
|
||
|
</build>
|
||
|
|
||
|
<issueManagement>
|
||
|
<system>github</system>
|
||
|
<url>https://github.com/eclipse/jetty.toolchain</url>
|
||
|
</issueManagement>
|
||
|
|
||
|
<distributionManagement>
|
||
|
<repository>
|
||
|
<id>oss.sonatype.org</id>
|
||
|
<name>Jetty Staging Repository</name>
|
||
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
||
|
</repository>
|
||
|
<snapshotRepository>
|
||
|
<id>oss.sonatype.org</id>
|
||
|
<name>Jetty Snapshot Repository</name>
|
||
|
<url>https://oss.sonatype.org/content/repositories/jetty-snapshots/</url>
|
||
|
</snapshotRepository>
|
||
|
</distributionManagement>
|
||
|
|
||
|
<mailingLists>
|
||
|
<mailingList>
|
||
|
<name>Jetty Developer Mailing List</name>
|
||
|
<archive>http://dev.eclipse.org/mhonarc/lists/jetty-dev/maillist.html</archive>
|
||
|
<subscribe>https://dev.eclipse.org/mailman/listinfo/jetty-dev</subscribe>
|
||
|
<unsubscribe>https://dev.eclipse.org/mailman/listinfo/jetty-dev</unsubscribe>
|
||
|
</mailingList>
|
||
|
<mailingList>
|
||
|
<name>Jetty Commit Mailing List</name>
|
||
|
<archive>http://dev.eclipse.org/mhonarc/lists/jetty-commit/maillist.html</archive>
|
||
|
<subscribe>https://dev.eclipse.org/mailman/listinfo/jetty-commit</subscribe>
|
||
|
<unsubscribe>https://dev.eclipse.org/mailman/listinfo/jetty-commit</unsubscribe>
|
||
|
</mailingList>
|
||
|
<mailingList>
|
||
|
<name>Jetty Users Mailing List</name>
|
||
|
<archive>http://dev.eclipse.org/mhonarc/lists/jetty-users/maillist.html</archive>
|
||
|
<subscribe>https://dev.eclipse.org/mailman/listinfo/jetty-users</subscribe>
|
||
|
<unsubscribe>https://dev.eclipse.org/mailman/listinfo/jetty-users</unsubscribe>
|
||
|
</mailingList>
|
||
|
<mailingList>
|
||
|
<name>Jetty Announce Mailing List</name>
|
||
|
<archive>http://dev.eclipse.org/mhonarc/lists/jetty-announce/maillist.html</archive>
|
||
|
<subscribe>https://dev.eclipse.org/mailman/listinfo/jetty-announce</subscribe>
|
||
|
<unsubscribe>https://dev.eclipse.org/mailman/listinfo/jetty-announce</unsubscribe>
|
||
|
</mailingList>
|
||
|
</mailingLists>
|
||
|
|
||
|
<developers>
|
||
|
<developer>
|
||
|
<id>gregw</id>
|
||
|
<name>Greg Wilkins</name>
|
||
|
<email>gregw@apache.org</email>
|
||
|
<url>http://www.mortbay.com/mortbay/people/gregw</url>
|
||
|
<organization>Mort Bay Consulting</organization>
|
||
|
<organizationUrl>http://www.mortbay.com</organizationUrl>
|
||
|
</developer>
|
||
|
<developer>
|
||
|
<id>janb</id>
|
||
|
<name>Jan Bartel</name>
|
||
|
<email>janb@apache.org</email>
|
||
|
<url>http://www.mortbay.com/people/janb</url>
|
||
|
<organization>Mort Bay Consulting</organization>
|
||
|
<organizationUrl>http://www.mortbay.com</organizationUrl>
|
||
|
</developer>
|
||
|
<developer>
|
||
|
<id>jules</id>
|
||
|
<name>Jules Gosnell</name>
|
||
|
<email>jules@apache.org</email>
|
||
|
<organization />
|
||
|
</developer>
|
||
|
<developer>
|
||
|
<id>jstrachan</id>
|
||
|
<name>James Strachan</name>
|
||
|
<email>jstrachan@apache.org</email>
|
||
|
<organization>Logic Blaze</organization>
|
||
|
<organizationUrl>http://www.logicblaze.com</organizationUrl>
|
||
|
</developer>
|
||
|
<developer>
|
||
|
<id>sbordet</id>
|
||
|
<name>Simone Bordet</name>
|
||
|
<email>simone.bordet@gmail.com</email>
|
||
|
</developer>
|
||
|
<developer>
|
||
|
<id>tvernum</id>
|
||
|
<name>Tim Vernum</name>
|
||
|
<email>tim@adjective.org</email>
|
||
|
<organization />
|
||
|
</developer>
|
||
|
<developer>
|
||
|
<id>ngonzalez</id>
|
||
|
<name>Nik Gonzalez</name>
|
||
|
<email>ngonzalez@exist.com</email>
|
||
|
<organization />
|
||
|
</developer>
|
||
|
<developer>
|
||
|
<id>jfarcand</id>
|
||
|
<name>Jeanfrancois Arcand</name>
|
||
|
<email>jfarcand@apache.org</email>
|
||
|
<organization>Sun Microsystems</organization>
|
||
|
<organizationUrl>http://www.sun.com</organizationUrl>
|
||
|
</developer>
|
||
|
<developer>
|
||
|
<id>jesse</id>
|
||
|
<name>Jesse McConnell</name>
|
||
|
<email>jesse@webtide.org</email>
|
||
|
<organization>Webtide, LLC</organization>
|
||
|
<organizationUrl>http://www.webtide.com</organizationUrl>
|
||
|
<timezone>-6</timezone>
|
||
|
</developer>
|
||
|
<developer>
|
||
|
<id>djencks</id>
|
||
|
<name>David Jencks</name>
|
||
|
<email>david_jencks@yahoo.com</email>
|
||
|
<organization>IBM</organization>
|
||
|
</developer>
|
||
|
<developer>
|
||
|
<id>dyu</id>
|
||
|
<name>David Yu</name>
|
||
|
<email>david.yu.ftw@gmail.com</email>
|
||
|
<organization>Webtide</organization>
|
||
|
<organizationUrl>http://www.webtide.com</organizationUrl>
|
||
|
</developer>
|
||
|
<developer>
|
||
|
<id>ayao</id>
|
||
|
<name>Athena Yao</name>
|
||
|
<email>yao.athena@gmail.com</email>
|
||
|
<organization>Webtide</organization>
|
||
|
<organizationUrl>http://www.webtide.com</organizationUrl>
|
||
|
</developer>
|
||
|
<developer>
|
||
|
<id>joakime</id>
|
||
|
<name>Joakim Erdfelt</name>
|
||
|
<email>joakim@webtide.com</email>
|
||
|
<organization>Webtide</organization>
|
||
|
<organizationUrl>http://www.webtide.com</organizationUrl>
|
||
|
<timezone>-7</timezone>
|
||
|
</developer>
|
||
|
<developer>
|
||
|
<id>hmalphett</id>
|
||
|
<name>Hugues Malphettes</name>
|
||
|
<organization>Intalio.com</organization>
|
||
|
<organizationUrl>http://www.intalio.com</organizationUrl>
|
||
|
<timezone>-8</timezone>
|
||
|
</developer>
|
||
|
<developer>
|
||
|
<id>mgorovoy</id>
|
||
|
<name>Michael Gorovoy</name>
|
||
|
<email>michael@webtide.com</email>
|
||
|
<organization>Intalio Inc.</organization>
|
||
|
<organizationUrl>http://www.intalio.com</organizationUrl>
|
||
|
<timezone>-5</timezone>
|
||
|
</developer>
|
||
|
</developers>
|
||
|
|
||
|
<organization>
|
||
|
<name>Mort Bay Consulting</name>
|
||
|
<url>http://www.mortbay.com</url>
|
||
|
</organization>
|
||
|
|
||
|
</project>
|