2009-03-24 17:07:27 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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>
|
2009-04-11 10:00:15 -04:00
|
|
|
<version>9</version>
|
2009-03-24 17:07:27 -04:00
|
|
|
</parent>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-project</artifactId>
|
2009-05-18 05:03:47 -04:00
|
|
|
<version>7.0.0.M3-SNAPSHOT</version>
|
2009-03-24 17:07:27 -04:00
|
|
|
<name>Jetty :: Project</name>
|
2009-04-01 14:06:52 -04:00
|
|
|
<url>${jetty.url}</url>
|
2009-03-24 17:07:27 -04:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
<properties>
|
2009-04-01 14:06:52 -04:00
|
|
|
<jetty.url>http://www.eclipse.org/jetty</jetty.url>
|
|
|
|
<felix.bundle.version>2.0.0</felix.bundle.version>
|
2009-03-24 17:07:27 -04:00
|
|
|
<activation-version>1.1</activation-version>
|
|
|
|
<ant-version>1.6.5</ant-version>
|
|
|
|
<jta-spec-version>1.1.1</jta-spec-version>
|
|
|
|
<junit-version>3.8.2</junit-version>
|
|
|
|
<mail-version>1.4</mail-version>
|
2009-04-01 14:06:52 -04:00
|
|
|
<slf4j-version>1.5.6</slf4j-version>
|
2009-03-24 17:07:27 -04:00
|
|
|
<eclipse-compiler-version>3.1.1</eclipse-compiler-version>
|
|
|
|
<cometd-version>1.0.beta4</cometd-version>
|
2009-05-13 12:07:46 -04:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2009-03-24 17:07:27 -04:00
|
|
|
<scm>
|
2009-05-18 05:03:47 -04:00
|
|
|
<connection>scm:svn:http://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk</connection>
|
|
|
|
<developerConnection>scm:svn:svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk</developerConnection>
|
|
|
|
<url>http://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk</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>
|
2009-03-24 17:07:27 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2009-05-19 13:12:50 -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-SNAPSHOT</resourceBundle>
|
|
|
|
</resourceBundles>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2009-04-01 14:06:52 -04:00
|
|
|
</plugins>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2009-03-24 17:07:27 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifestEntries>
|
2009-04-01 14:06:52 -04:00
|
|
|
<Eclipse-Status>Incubation</Eclipse-Status>
|
2009-04-02 01:46:46 -04:00
|
|
|
<Implementation-Version>${project.version}</Implementation-Version>
|
|
|
|
<Implementation-Vendor>Eclipse.org - Jetty</Implementation-Vendor>
|
2009-04-02 16:47:13 -04:00
|
|
|
<url>${jetty.url}</url>
|
2009-03-24 17:07:27 -04:00
|
|
|
</manifestEntries>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
2009-04-01 14:06:52 -04:00
|
|
|
</plugin>
|
2009-03-24 17:07:27 -04:00
|
|
|
<plugin>
|
2009-04-01 14:06:52 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>2.4.2</version>
|
2009-03-24 17:07:27 -04:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
2009-04-01 14:06:52 -04:00
|
|
|
<version>2.0.0</version>
|
2009-03-24 17:07:27 -04:00
|
|
|
<extensions>true</extensions>
|
2009-04-10 14:40:51 -04:00
|
|
|
<configuration>
|
2009-04-01 14:06:52 -04:00
|
|
|
<instructions>
|
|
|
|
<Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment>
|
|
|
|
<Bundle-DocURL>${jetty.url}</Bundle-DocURL>
|
2009-05-21 22:53:45 -04:00
|
|
|
<Bundle-Vendor>Eclipse Jetty Project</Bundle-Vendor>
|
2009-04-10 14:40:51 -04:00
|
|
|
<Bundle-Localization>plugin</Bundle-Localization>
|
|
|
|
<Bundle-Classpath>.</Bundle-Classpath>
|
2009-04-01 14:06:52 -04:00
|
|
|
<Bundle-Copyright>Copyright (c) 2008-2009 Mort Bay Consulting Pty. Ltd.</Bundle-Copyright>
|
2009-04-01 21:53:56 -04:00
|
|
|
<_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy>
|
2009-04-01 14:06:52 -04:00
|
|
|
</instructions>
|
|
|
|
</configuration>
|
2009-03-24 17:07:27 -04:00
|
|
|
</plugin>
|
2009-03-31 18:23:19 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<version>2.2-beta-3</version>
|
|
|
|
<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>
|
2009-05-19 13:12:50 -04:00
|
|
|
</plugin>
|
2009-03-24 17:07:27 -04:00
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
<modules>
|
|
|
|
<module>jetty-util</module>
|
|
|
|
<module>jetty-io</module>
|
|
|
|
<module>jetty-http</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>
|
|
|
|
<module>jetty-deploy</module>
|
|
|
|
<module>jetty-ajp</module>
|
|
|
|
<module>jetty-jmx</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-05-26 19:58:18 -04:00
|
|
|
<module>jetty-start</module>
|
2009-05-25 21:16:27 -04:00
|
|
|
<module>test-jetty-servlet</module>
|
|
|
|
<module>test-jetty-webapp</module>
|
2009-05-26 23:24:11 -04:00
|
|
|
<module>jetty-aggregate</module>
|
2009-05-25 21:16:27 -04:00
|
|
|
<module>example-jetty-embedded</module>
|
2009-05-26 19:58:18 -04:00
|
|
|
<module>jetty-distribution</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>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>${junit-version}</version>
|
|
|
|
</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>ant</groupId>
|
|
|
|
<artifactId>ant</artifactId>
|
|
|
|
<version>${ant-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-jta_1.1_spec</artifactId>
|
|
|
|
<version>${jta-spec-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.mail</groupId>
|
|
|
|
<artifactId>mail</artifactId>
|
|
|
|
<version>${mail-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.activation</groupId>
|
|
|
|
<artifactId>activation</artifactId>
|
|
|
|
<version>${activation-version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
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-04-10 14:40:51 -04:00
|
|
|
<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>
|
2009-03-24 17:07:27 -04:00
|
|
|
</project>
|