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-12 06:54:21 +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-webapp</artifactId>
|
2009-07-22 00:51:14 +00:00
|
|
|
<name>Jetty :: Webapp Application Support</name>
|
|
|
|
<description>Jetty web application support</description>
|
2013-05-21 13:10:07 -05:00
|
|
|
<url>http://www.eclipse.org/jetty</url>
|
2018-11-22 12:37:35 +01:00
|
|
|
|
2010-03-30 18:45:31 +00:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.webapp</bundle-symbolic-name>
|
|
|
|
</properties>
|
2018-11-22 12:37:35 +01:00
|
|
|
|
2009-03-24 21:07:27 +00:00
|
|
|
<build>
|
2009-04-02 09:22:42 +00:00
|
|
|
<resources>
|
2010-06-16 18:30:56 +00:00
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/config/etc</directory>
|
|
|
|
<targetPath>org/eclipse/jetty/webapp</targetPath>
|
|
|
|
<filtering>false</filtering>
|
|
|
|
<includes>
|
|
|
|
<include>webdefault.xml</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
2009-04-02 09:22:42 +00:00
|
|
|
</resources>
|
2018-11-22 12:37:35 +01:00
|
|
|
|
2009-03-24 21:07:27 +00:00
|
|
|
<plugins>
|
2010-06-16 17:21:50 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<onlyAnalyze>org.eclipse.jetty.webapp.*</onlyAnalyze>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2015-06-29 10:03:03 -07:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
2018-12-03 13:25:00 +10:00
|
|
|
<argLine>
|
2019-06-24 17:42:39 +02:00
|
|
|
@{argLine} ${jetty.surefire.argLine} --add-modules org.eclipse.jetty.jmx
|
2018-12-03 13:25:00 +10:00
|
|
|
</argLine>
|
2017-11-15 10:33:51 +01:00
|
|
|
<useManifestOnlyJar>false</useManifestOnlyJar>
|
2018-12-27 16:44:53 +11:00
|
|
|
<additionalClasspathElements>
|
|
|
|
<additionalClasspathElement>${basedir}/src/test/resources/module/foo-bar-janb.jar</additionalClasspathElement>
|
|
|
|
</additionalClasspathElements>
|
2017-04-19 18:01:12 -07:00
|
|
|
<excludes>
|
|
|
|
<exclude>org.eclipse.jetty.webapp.WebAppClassLoaderUrlStreamTest</exclude>
|
|
|
|
</excludes>
|
2015-06-29 10:03:03 -07:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2016-05-02 17:55:54 +10:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<instructions>
|
|
|
|
<Require-Capability>
|
2019-06-24 17:42:39 +02:00
|
|
|
osgi.extender; filter:="(osgi.extender=osgi.serviceloader.processor)", osgi.serviceloader; filter:="(osgi.serviceloader=org.eclipse.jetty.webapp.Configuration)";cardinality:=multiple
|
2016-05-02 17:55:54 +10:00
|
|
|
</Require-Capability>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2009-04-02 09:22:42 +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>
|
2018-11-22 12:37:35 +01:00
|
|
|
<artifactId>jetty-servlet</artifactId>
|
2009-03-24 21:07:27 +00:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2010-06-16 18:30:57 +00:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2018-11-22 12:37:35 +01:00
|
|
|
<artifactId>jetty-xml</artifactId>
|
2010-06-16 18:30:57 +00:00
|
|
|
<version>${project.version}</version>
|
2009-03-24 21:07:27 +00:00
|
|
|
</dependency>
|
2018-11-22 12:37:35 +01:00
|
|
|
|
2011-01-06 18:04:58 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-jmx</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2018-11-22 12:37:35 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
|
|
|
<scope>test</scope>
|
2011-01-06 18:04:58 +00:00
|
|
|
</dependency>
|
2019-07-23 15:24:33 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-client</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2009-03-24 21:07:27 +00:00
|
|
|
</dependencies>
|
|
|
|
</project>
|