2012-12-21 13:46:58 -05: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">
|
2009-08-09 19:42:32 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-project</artifactId>
|
2013-04-18 23:59:18 -04:00
|
|
|
<version>9.1.0-SNAPSHOT</version>
|
2009-08-09 19:42:32 -04:00
|
|
|
</parent>
|
|
|
|
<artifactId>jetty-distribution</artifactId>
|
|
|
|
<name>Jetty :: Distribution Assemblies</name>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<properties>
|
2010-05-05 13:50:07 -04:00
|
|
|
<assembly-directory>target/distribution</assembly-directory>
|
2013-03-14 22:33:20 -04:00
|
|
|
<jetty-setuid-version>1.0.1</jetty-setuid-version>
|
2009-08-09 19:42:32 -04:00
|
|
|
</properties>
|
2010-04-27 15:28:44 -04:00
|
|
|
<build>
|
2009-08-09 19:42:32 -04:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2010-06-16 13:21:50 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2009-08-09 19:42:32 -04:00
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
2010-06-16 13:21:50 -04:00
|
|
|
<id>copy-base-assembly-tree</id>
|
2009-08-09 19:42:32 -04:00
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
2010-06-16 13:21:50 -04:00
|
|
|
<goal>copy-resources</goal>
|
2009-08-09 19:42:32 -04:00
|
|
|
</goals>
|
2010-06-16 13:21:50 -04:00
|
|
|
<configuration>
|
|
|
|
<useBuildFilters>false</useBuildFilters>
|
|
|
|
<includeEmptyDirs>true</includeEmptyDirs>
|
|
|
|
<outputDirectory>${assembly-directory}</outputDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>${basedir}/src/main/resources</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</configuration>
|
2009-08-09 19:42:32 -04:00
|
|
|
</execution>
|
2009-09-09 17:06:31 -04:00
|
|
|
</executions>
|
|
|
|
</plugin>
|
2009-08-09 19:42:32 -04:00
|
|
|
<plugin>
|
2009-09-09 16:48:59 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<tasks>
|
2012-12-21 13:46:58 -05:00
|
|
|
<chmod dir="${assembly-directory}/bin" perm="755" includes="**/*.sh" />
|
2009-09-09 16:48:59 -04:00
|
|
|
</tasks>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2009-08-09 19:42:32 -04:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2009-09-09 16:48:59 -04:00
|
|
|
<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-09-26 12:47:46 -04:00
|
|
|
<resourceBundle>org.eclipse.jetty.toolchain:jetty-distribution-remote-resources:1.2</resourceBundle>
|
2009-09-09 16:48:59 -04:00
|
|
|
</resourceBundles>
|
2010-05-05 13:50:07 -04:00
|
|
|
<outputDirectory>${assembly-directory}</outputDirectory>
|
2009-09-09 16:48:59 -04:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2009-08-09 19:42:32 -04:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy</id>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2009-09-09 16:48:59 -04:00
|
|
|
<artifactItems>
|
2011-08-19 13:52:48 -04:00
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-project</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>version</classifier>
|
|
|
|
<type>txt</type>
|
|
|
|
<overWrite>true</overWrite>
|
|
|
|
<outputDirectory>${assembly-directory}/</outputDirectory>
|
|
|
|
<destFileName>VERSION.txt</destFileName>
|
|
|
|
</artifactItem>
|
2009-08-09 19:42:32 -04:00
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>test-jetty-webapp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>war</type>
|
|
|
|
<overWrite>true</overWrite>
|
|
|
|
<includes>**</includes>
|
2013-04-25 23:53:28 -04:00
|
|
|
<outputDirectory>${assembly-directory}/webapps.demo</outputDirectory>
|
2009-08-09 19:42:32 -04:00
|
|
|
<destFileName>test.war</destFileName>
|
|
|
|
</artifactItem>
|
2012-11-26 00:56:39 -05:00
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>test-proxy-webapp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>war</type>
|
|
|
|
<overWrite>true</overWrite>
|
|
|
|
<includes>**</includes>
|
2013-04-25 23:53:28 -04:00
|
|
|
<outputDirectory>${assembly-directory}/webapps.demo</outputDirectory>
|
2012-11-29 01:41:54 -05:00
|
|
|
<destFileName>xref-proxy.war</destFileName>
|
2012-11-26 00:56:39 -05:00
|
|
|
</artifactItem>
|
2012-10-12 00:36:32 -04:00
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.eclipse.jetty.example-async-rest</groupId>
|
|
|
|
<artifactId>example-async-rest-webapp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>war</type>
|
|
|
|
<overWrite>true</overWrite>
|
|
|
|
<includes>**</includes>
|
2013-04-25 23:53:28 -04:00
|
|
|
<outputDirectory>${assembly-directory}/webapps.demo</outputDirectory>
|
2012-10-12 00:36:32 -04:00
|
|
|
<destFileName>async-rest.war</destFileName>
|
|
|
|
</artifactItem>
|
2009-08-09 19:42:32 -04:00
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-start</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<overWrite>true</overWrite>
|
|
|
|
<includes>**</includes>
|
2010-05-05 13:50:07 -04:00
|
|
|
<outputDirectory>${assembly-directory}</outputDirectory>
|
2009-08-09 19:42:32 -04:00
|
|
|
<destFileName>start.jar</destFileName>
|
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2012-12-06 11:06:28 -05:00
|
|
|
<execution>
|
|
|
|
<id>copy-setuid-deps</id>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain.setuid</groupId>
|
|
|
|
<artifactId>jetty-setuid-java</artifactId>
|
|
|
|
<version>${jetty-setuid-version}</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<overWrite>true</overWrite>
|
|
|
|
<outputDirectory>${assembly-directory}/lib/setuid</outputDirectory>
|
|
|
|
</artifactItem>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain.setuid</groupId>
|
|
|
|
<artifactId>libsetuid-linux</artifactId>
|
|
|
|
<version>${jetty-setuid-version}</version>
|
|
|
|
<type>so</type>
|
|
|
|
<overWrite>true</overWrite>
|
|
|
|
<outputDirectory>${assembly-directory}/lib/setuid</outputDirectory>
|
2012-12-06 11:07:58 -05:00
|
|
|
<destFileName>libsetuid-linux.so</destFileName>
|
2012-12-06 11:06:28 -05:00
|
|
|
</artifactItem>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain.setuid</groupId>
|
|
|
|
<artifactId>libsetuid-osx</artifactId>
|
|
|
|
<version>${jetty-setuid-version}</version>
|
|
|
|
<type>so</type>
|
|
|
|
<overWrite>true</overWrite>
|
|
|
|
<outputDirectory>${assembly-directory}/lib/setuid</outputDirectory>
|
|
|
|
<destFileName>libsetuid-osx.so</destFileName>
|
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>unpack-setuid-config</id>
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>unpack</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain.setuid</groupId>
|
|
|
|
<artifactId>jetty-setuid-java</artifactId>
|
|
|
|
<version>${jetty-setuid-version}</version>
|
|
|
|
<classifier>config</classifier>
|
|
|
|
<type>jar</type>
|
|
|
|
<overWrite>true</overWrite>
|
|
|
|
<outputDirectory>${assembly-directory}</outputDirectory>
|
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2011-09-16 12:48:19 -04:00
|
|
|
<execution>
|
|
|
|
<id>copy-lib-deps</id>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<includeGroupIds>org.eclipse.jetty</includeGroupIds>
|
2012-11-12 21:42:32 -05:00
|
|
|
<excludeGroupIds>org.eclipse.jetty.orbit,org.eclipse.jetty.spdy,org.eclipse.jetty.websocket,org.eclipse.jetty.drafts</excludeGroupIds>
|
2012-02-01 20:34:54 -05:00
|
|
|
<excludeArtifactIds>jetty-all,jetty-start,jetty-monitor,jetty-jsp</excludeArtifactIds>
|
2011-09-16 12:48:19 -04:00
|
|
|
<includeTypes>jar</includeTypes>
|
|
|
|
<outputDirectory>${assembly-directory}/lib</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2012-11-12 21:42:32 -05:00
|
|
|
<execution>
|
|
|
|
<id>copy-lib-websocket-deps</id>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<includeGroupIds>org.eclipse.jetty.websocket,org.eclipse.jetty.drafts</includeGroupIds>
|
|
|
|
<includeTypes>jar</includeTypes>
|
|
|
|
<outputDirectory>${assembly-directory}/lib/websocket</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2013-03-26 11:32:35 -04:00
|
|
|
<execution>
|
|
|
|
<id>copy-lib-monitor-deps</id>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-monitor</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<overWrite>true</overWrite>
|
|
|
|
<outputDirectory>${assembly-directory}/lib/monitor</outputDirectory>
|
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2012-12-06 11:06:28 -05:00
|
|
|
<execution>
|
2012-01-23 11:12:48 -05:00
|
|
|
<id>copy-orbit-servlet-api-deps</id>
|
2012-01-20 16:59:33 -05:00
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
2012-01-23 11:12:48 -05:00
|
|
|
<goal>copy</goal>
|
2012-01-20 16:59:33 -05:00
|
|
|
</goals>
|
|
|
|
<configuration>
|
2012-01-23 11:12:48 -05:00
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.eclipse.jetty.orbit</groupId>
|
|
|
|
<artifactId>javax.servlet</artifactId>
|
|
|
|
<version>${orbit-servlet-api-version}</version>
|
|
|
|
<overWrite>true</overWrite>
|
|
|
|
<outputDirectory>${assembly-directory}/lib</outputDirectory>
|
2012-02-01 18:25:11 -05:00
|
|
|
<destFileName>servlet-api-3.0.jar</destFileName>
|
2012-01-23 11:12:48 -05:00
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
2012-01-20 16:59:33 -05:00
|
|
|
</configuration>
|
2012-12-06 11:06:28 -05:00
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>unpack-spdy</id>
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>unpack-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<includeGroupIds>org.eclipse.jetty.spdy</includeGroupIds>
|
|
|
|
<classifier>config</classifier>
|
|
|
|
<failOnMissingClassifierArtifact>false</failOnMissingClassifierArtifact>
|
|
|
|
<excludes>META-INF/**</excludes>
|
|
|
|
<outputDirectory>${assembly-directory}</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>copy-lib-spdy-deps</id>
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<includeGroupIds>org.eclipse.jetty.spdy</includeGroupIds>
|
|
|
|
<includeTypes>jar</includeTypes>
|
|
|
|
<outputDirectory>${assembly-directory}/lib/spdy</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>copy-orbit-lib-annotations-deps</id>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<includeGroupIds>org.eclipse.jetty.orbit</includeGroupIds>
|
|
|
|
<includeArtifactIds>javax.annotation,org.objectweb.asm</includeArtifactIds>
|
|
|
|
<includeTypes>jar</includeTypes>
|
|
|
|
<outputDirectory>${assembly-directory}/lib/annotations</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
|
|
|
|
<execution>
|
|
|
|
<id>copy-orbit-lib-jta-deps</id>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<includeGroupIds>org.eclipse.jetty.orbit</includeGroupIds>
|
|
|
|
<includeArtifactIds>javax.transaction</includeArtifactIds>
|
|
|
|
<includeTypes>jar</includeTypes>
|
2013-01-19 19:07:01 -05:00
|
|
|
<outputDirectory>${assembly-directory}/lib/jndi</outputDirectory>
|
2012-12-06 11:06:28 -05:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
2012-01-20 16:59:33 -05:00
|
|
|
<id>copy-orbit-lib-jndi-deps</id>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2012-01-23 11:12:48 -05:00
|
|
|
<includeGroupIds>org.eclipse.jetty.orbit</includeGroupIds>
|
|
|
|
<includeArtifactIds>javax.mail.glassfish,javax.activation</includeArtifactIds>
|
2012-01-20 16:59:33 -05:00
|
|
|
<includeTypes>jar</includeTypes>
|
|
|
|
<outputDirectory>${assembly-directory}/lib/jndi</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>copy-orbit-lib-jsp-deps</id>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2012-01-23 11:12:48 -05:00
|
|
|
<includeGroupIds>org.eclipse.jetty.orbit</includeGroupIds>
|
2012-01-20 16:59:33 -05:00
|
|
|
<includeArtifactIds>com.sun.el,javax.el,javax.servlet.jsp,javax.servlet.jsp.jstl,org.apache.jasper.glassfish,org.apache.taglibs.standard.glassfish,org.eclipse.jdt.core</includeArtifactIds>
|
|
|
|
<includeTypes>jar</includeTypes>
|
|
|
|
<outputDirectory>${assembly-directory}/lib/jsp</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2012-04-13 15:58:09 -04:00
|
|
|
<execution>
|
|
|
|
<id>unpack-config-deps</id>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>unpack-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<includeGroupIds>org.eclipse.jetty</includeGroupIds>
|
|
|
|
<classifier>config</classifier>
|
|
|
|
<failOnMissingClassifierArtifact>false</failOnMissingClassifierArtifact>
|
|
|
|
<excludes>META-INF/**</excludes>
|
|
|
|
<outputDirectory>${assembly-directory}</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2009-08-12 21:30:40 -04:00
|
|
|
</executions>
|
2009-09-09 16:48:59 -04:00
|
|
|
</plugin>
|
2009-08-09 19:42:32 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>src/main/assembly/jetty-assembly.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
<tarLongFileMode>gnu</tarLongFileMode>
|
2011-05-17 09:41:15 -04:00
|
|
|
<appendAssemblyId>false</appendAssemblyId>
|
2009-08-09 19:42:32 -04:00
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2010-06-16 13:21:50 -04:00
|
|
|
<!-- No point performing PMD in assembly project -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-pmd-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<!-- No point performing Findbugs in assembly project -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2009-08-09 19:42:32 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
2012-01-31 17:54:26 -05:00
|
|
|
<!-- Orbit Deps -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.orbit</groupId>
|
|
|
|
<artifactId>javax.annotation</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.orbit</groupId>
|
|
|
|
<artifactId>org.objectweb.asm</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.orbit</groupId>
|
|
|
|
<artifactId>javax.activation</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.orbit</groupId>
|
|
|
|
<artifactId>javax.mail.glassfish</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.orbit</groupId>
|
|
|
|
<artifactId>javax.transaction</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.orbit</groupId>
|
2012-02-01 03:30:55 -05:00
|
|
|
<artifactId>javax.security.auth.message</artifactId>
|
2012-01-31 17:54:26 -05:00
|
|
|
</dependency>
|
2012-09-18 17:33:30 -04:00
|
|
|
|
2012-12-06 11:06:28 -05:00
|
|
|
<!-- jetty deps -->
|
2009-08-09 19:42:32 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2009-09-09 16:48:59 -04:00
|
|
|
<artifactId>jetty-deploy</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2009-08-09 19:42:32 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2012-08-08 19:38:50 -04:00
|
|
|
<artifactId>test-jetty-webapp</artifactId>
|
|
|
|
<type>war</type>
|
2009-09-09 16:48:59 -04:00
|
|
|
<version>${project.version}</version>
|
2009-08-09 19:42:32 -04:00
|
|
|
</dependency>
|
2012-11-26 00:56:39 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>test-proxy-webapp</artifactId>
|
|
|
|
<type>war</type>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2009-08-09 19:42:32 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2012-08-08 19:38:50 -04:00
|
|
|
<artifactId>jetty-jmx</artifactId>
|
2009-09-09 16:48:59 -04:00
|
|
|
<version>${project.version}</version>
|
2009-08-09 19:42:32 -04:00
|
|
|
</dependency>
|
2013-03-26 11:32:35 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-monitor</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2009-08-09 19:42:32 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2012-08-08 19:38:50 -04:00
|
|
|
<artifactId>jetty-start</artifactId>
|
2009-09-09 16:48:59 -04:00
|
|
|
<version>${project.version}</version>
|
2009-08-09 19:42:32 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2012-08-08 19:38:50 -04:00
|
|
|
<artifactId>jetty-servlets</artifactId>
|
2009-09-09 16:48:59 -04:00
|
|
|
<version>${project.version}</version>
|
2009-08-09 19:42:32 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2012-08-08 19:38:50 -04:00
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>websocket-server</artifactId>
|
2009-09-09 16:48:59 -04:00
|
|
|
<version>${project.version}</version>
|
2009-08-09 19:42:32 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2012-08-08 19:38:50 -04:00
|
|
|
<artifactId>jetty-jsp</artifactId>
|
2009-08-09 19:42:32 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2012-09-13 00:43:03 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-plus</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2013-01-28 13:45:12 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-client</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2013-01-29 15:06:47 -05:00
|
|
|
<artifactId>jetty-continuation</artifactId>
|
2013-01-28 13:45:12 -05:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2012-11-26 00:56:39 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-proxy</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2009-08-09 19:42:32 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2012-11-02 00:41:58 -04:00
|
|
|
<artifactId>jetty-jaas</artifactId>
|
2009-09-09 16:48:59 -04:00
|
|
|
<version>${project.version}</version>
|
2009-08-09 19:42:32 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2009-09-09 16:48:59 -04:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2012-11-02 00:41:58 -04:00
|
|
|
<artifactId>jetty-annotations</artifactId>
|
2009-09-09 16:48:59 -04:00
|
|
|
<version>${project.version}</version>
|
2009-08-09 19:42:32 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2009-09-09 16:48:59 -04:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2012-11-02 00:41:58 -04:00
|
|
|
<artifactId>jetty-rewrite</artifactId>
|
2009-09-09 16:48:59 -04:00
|
|
|
<version>${project.version}</version>
|
2009-08-09 19:42:32 -04:00
|
|
|
</dependency>
|
2012-11-26 00:56:39 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.spdy</groupId>
|
|
|
|
<artifactId>spdy-core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.spdy</groupId>
|
|
|
|
<artifactId>spdy-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.spdy</groupId>
|
|
|
|
<artifactId>spdy-http-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.spdy</groupId>
|
|
|
|
<artifactId>spdy-example-webapp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>war</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.example-async-rest</groupId>
|
|
|
|
<artifactId>example-async-rest-webapp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>war</type>
|
|
|
|
</dependency>
|
2012-04-13 13:33:46 -04:00
|
|
|
</dependencies>
|
2009-09-08 16:31:00 -04:00
|
|
|
</project>
|