2012-11-19 19:05:54 -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">
|
2012-08-21 17:56:35 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-project</artifactId>
|
2015-10-07 18:41:32 -04:00
|
|
|
<version>9.4.0-SNAPSHOT</version>
|
2012-08-21 17:56:35 -04:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>jetty-ant</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Jetty :: Ant Plugin</name>
|
2012-11-15 14:38:53 -05:00
|
|
|
|
2014-08-15 05:35:49 -04:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>org.eclipse.jetty.ant</bundle-symbolic-name>
|
|
|
|
</properties>
|
2012-08-21 17:56:35 -04:00
|
|
|
<build>
|
2012-11-15 14:38:53 -05:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy-lib-deps</id>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<includeGroupIds>org.eclipse.jetty</includeGroupIds>
|
2015-02-10 22:20:06 -05:00
|
|
|
<excludeGroupIds>org.eclipse.jetty.orbit,org.eclipse.jetty.websocket,org.eclipse.jetty.drafts</excludeGroupIds>
|
2015-02-18 03:24:29 -05:00
|
|
|
<excludeArtifactIds>jetty-all,jetty-start,jetty-monitor</excludeArtifactIds>
|
2012-11-15 14:38:53 -05:00
|
|
|
<includeTypes>jar</includeTypes>
|
|
|
|
<outputDirectory>${project.build.directory}/test-lib</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2012-08-21 17:56:35 -04:00
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2012-09-20 14:42:21 -04:00
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
2012-08-21 17:56:35 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ant</groupId>
|
|
|
|
<artifactId>ant</artifactId>
|
|
|
|
<version>1.6.5</version>
|
|
|
|
</dependency>
|
2012-11-15 14:38:53 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>ant</groupId>
|
|
|
|
<artifactId>ant-launcher</artifactId>
|
|
|
|
<version>1.6.5</version>
|
|
|
|
</dependency>
|
2012-08-21 17:56:35 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-security</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-plus</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-webapp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2012-11-15 14:38:53 -05:00
|
|
|
</dependency>
|
2012-08-21 17:56:35 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-annotations</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|