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">
|
2014-03-17 03:22:36 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-project</artifactId>
|
2021-10-06 15:51:32 -04:00
|
|
|
<version>10.0.8-SNAPSHOT</version>
|
2014-03-17 03:22:36 -04:00
|
|
|
</parent>
|
2018-11-22 06:37:35 -05:00
|
|
|
|
2014-03-17 03:22:36 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>jetty-quickstart</artifactId>
|
2014-07-21 18:51:44 -04:00
|
|
|
<name>Jetty :: Quick Start</name>
|
2014-03-17 03:22:36 -04:00
|
|
|
<description>Jetty Quick Start</description>
|
2018-11-22 06:37:35 -05:00
|
|
|
|
2014-08-15 05:35:49 -04:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.quickstart</bundle-symbolic-name>
|
|
|
|
</properties>
|
2018-11-22 06:37:35 -05:00
|
|
|
|
2021-06-22 18:32:21 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<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.registrar)"
|
|
|
|
</Require-Capability>
|
|
|
|
<Provide-Capability>
|
|
|
|
osgi.serviceloader; osgi.serviceloader=org.eclipse.jetty.webapp.Configuration
|
|
|
|
</Provide-Capability>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2014-03-17 03:22:36 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-webapp</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-plus</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-annotations</artifactId>
|
|
|
|
</dependency>
|
2020-03-19 18:46:41 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-slf4j-impl</artifactId>
|
2020-03-20 12:12:08 -04:00
|
|
|
<scope>test</scope>
|
2020-03-19 18:46:41 -04:00
|
|
|
</dependency>
|
2014-03-17 03:22:36 -04:00
|
|
|
<dependency>
|
2017-04-11 21:08:07 -04:00
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-03-17 03:22:36 -04:00
|
|
|
</dependencies>
|
2018-11-22 06:37:35 -05:00
|
|
|
|
2014-03-17 03:22:36 -04:00
|
|
|
</project>
|