2019-06-24 17:42:39 +02: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-03-24 21:07:27 +00:00
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-project</artifactId>
|
2019-07-11 17:20:27 +10:00
|
|
|
<version>10.0.0-SNAPSHOT</version>
|
2009-03-24 21:07:27 +00:00
|
|
|
</parent>
|
2018-11-22 12:37:35 +01:00
|
|
|
|
2009-03-24 21:07:27 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>jetty-deploy</artifactId>
|
|
|
|
<name>Jetty :: Deployers</name>
|
|
|
|
<description>Jetty deployers</description>
|
2018-11-22 12:37:35 +01:00
|
|
|
|
2010-03-30 18:45:31 +00:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.deploy</bundle-symbolic-name>
|
|
|
|
</properties>
|
2018-11-22 12:37:35 +01:00
|
|
|
|
2009-03-24 21:07:27 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2018-12-03 13:25:00 +10:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<argLine>
|
2019-06-24 17:42:39 +02:00
|
|
|
@{argLine} ${jetty.surefire.argLine} --add-modules org.eclipse.jetty.jmx --add-reads org.eclipse.jetty.deploy=org.eclipse.jetty.http,jetty.servlet.api
|
2018-12-03 13:25:00 +10:00
|
|
|
</argLine>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2010-06-16 17:21:50 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<onlyAnalyze>org.eclipse.jetty.deploy.*</onlyAnalyze>
|
|
|
|
</configuration>
|
2009-03-24 21:07:27 +00:00
|
|
|
</plugin>
|
2009-12-04 21:59:58 +00:00
|
|
|
</plugins>
|
2009-03-24 21:07:27 +00:00
|
|
|
</build>
|
2018-11-22 12:37:35 +01:00
|
|
|
|
2009-03-24 21:07:27 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-webapp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-xml</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2010-07-22 03:28:51 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-jmx</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2011-01-06 18:04:58 +00:00
|
|
|
<optional>true</optional>
|
2010-07-22 03:28:51 +00:00
|
|
|
</dependency>
|
2018-11-22 12:37:35 +01:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2009-03-24 21:07:27 +00:00
|
|
|
</dependencies>
|
|
|
|
</project>
|