2024-01-03 04:12:56 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-06-24 11:42:39 -04: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">
|
2024-01-03 04:12:56 -05:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2009-03-24 17:07:27 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-project</artifactId>
|
2024-01-29 15:46:10 -05:00
|
|
|
<version>10.0.20</version>
|
2009-03-24 17:07:27 -04:00
|
|
|
</parent>
|
|
|
|
<artifactId>jetty-webapp</artifactId>
|
2009-07-21 20:51:14 -04:00
|
|
|
<name>Jetty :: Webapp Application Support</name>
|
|
|
|
<description>Jetty web application support</description>
|
2018-11-22 06:37:35 -05:00
|
|
|
|
2010-03-30 14:45:31 -04:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.webapp</bundle-symbolic-name>
|
2020-12-10 20:47:26 -05:00
|
|
|
<spotbugs.onlyAnalyze>org.eclipse.jetty.webapp.*</spotbugs.onlyAnalyze>
|
2010-03-30 14:45:31 -04:00
|
|
|
</properties>
|
2018-11-22 06:37:35 -05:00
|
|
|
|
2024-01-03 04:12:56 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-servlet</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-xml</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-client</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-slf4j-impl</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
|
|
|
<artifactId>jetty-http-tools</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2009-03-24 17:07:27 -04:00
|
|
|
<build>
|
2009-04-02 05:22:42 -04:00
|
|
|
<resources>
|
2010-06-16 14:30:56 -04:00
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<targetPath>org/eclipse/jetty/webapp</targetPath>
|
|
|
|
<filtering>false</filtering>
|
2024-01-03 04:12:56 -05:00
|
|
|
<directory>src/main/config/etc</directory>
|
2010-06-16 14:30:56 -04:00
|
|
|
<includes>
|
|
|
|
<include>webdefault.xml</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
2009-04-02 05:22:42 -04:00
|
|
|
</resources>
|
2018-11-22 06:37:35 -05:00
|
|
|
|
2009-03-24 17:07:27 -04:00
|
|
|
<plugins>
|
2024-01-03 04:12:56 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<instructions>
|
|
|
|
<Require-Capability>osgi.extender; filter:="(osgi.extender=osgi.serviceloader.processor)", osgi.serviceloader; filter:="(osgi.serviceloader=org.eclipse.jetty.webapp.Configuration)";cardinality:=multiple, osgi.extender; filter:="(osgi.extender=osgi.serviceloader.registrar)"</Require-Capability>
|
|
|
|
<Provide-Capability>osgi.serviceloader; osgi.serviceloader=org.eclipse.jetty.webapp.Configuration</Provide-Capability>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2015-06-29 13:03:03 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
2024-01-03 04:12:56 -05:00
|
|
|
<argLine>@{argLine} ${jetty.surefire.argLine}</argLine>
|
2017-11-15 04:33:51 -05:00
|
|
|
<useManifestOnlyJar>false</useManifestOnlyJar>
|
2018-12-27 00:44:53 -05:00
|
|
|
<additionalClasspathElements>
|
|
|
|
<additionalClasspathElement>${basedir}/src/test/resources/module/foo-bar-janb.jar</additionalClasspathElement>
|
|
|
|
</additionalClasspathElements>
|
2017-04-19 21:01:12 -04:00
|
|
|
<excludes>
|
|
|
|
<exclude>org.eclipse.jetty.webapp.WebAppClassLoaderUrlStreamTest</exclude>
|
|
|
|
</excludes>
|
2015-06-29 13:03:03 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2009-04-02 05:22:42 -04:00
|
|
|
</plugins>
|
2009-03-24 17:07:27 -04:00
|
|
|
</build>
|
|
|
|
</project>
|