2012-10-18 10:21:42 -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">
|
|
|
|
<parent>
|
2020-09-24 11:39:13 -04:00
|
|
|
<groupId>org.eclipse.jetty.demos</groupId>
|
|
|
|
<artifactId>demos-parent</artifactId>
|
2023-04-11 14:23:25 -04:00
|
|
|
<version>10.0.16-SNAPSHOT</version>
|
2012-10-18 10:21:42 -04:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2020-09-24 11:39:13 -04:00
|
|
|
<artifactId>demos-jetty-embedded</artifactId>
|
2020-09-29 12:37:22 -04:00
|
|
|
<name>Demo :: Embedded Jetty</name>
|
|
|
|
<description>Embedded Jetty Demos</description>
|
2014-08-15 05:35:49 -04:00
|
|
|
<properties>
|
2015-05-13 09:13:16 -04:00
|
|
|
<bundle-symbolic-name>${project.groupId}.embedded</bundle-symbolic-name>
|
2014-08-15 05:35:49 -04:00
|
|
|
</properties>
|
2012-10-18 10:21:42 -04:00
|
|
|
<dependencies>
|
2020-02-24 14:20:51 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-slf4j-impl</artifactId>
|
2020-05-03 04:06:41 -04:00
|
|
|
<scope>runtime</scope>
|
2020-02-24 14:20:51 -05:00
|
|
|
</dependency>
|
2012-10-18 10:21:42 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-util-ajax</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-webapp</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-security</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-servlets</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-deploy</artifactId>
|
|
|
|
</dependency>
|
2016-04-04 22:13:29 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-rewrite</artifactId>
|
|
|
|
</dependency>
|
2012-10-18 10:21:42 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-jmx</artifactId>
|
|
|
|
</dependency>
|
2013-09-11 10:22:11 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
2019-12-22 21:32:21 -05:00
|
|
|
<artifactId>websocket-javax-server</artifactId>
|
2013-09-11 10:22:11 -04:00
|
|
|
</dependency>
|
2020-04-30 11:30:39 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
2020-12-01 19:10:15 -05:00
|
|
|
<artifactId>websocket-servlet</artifactId>
|
2020-04-30 11:30:39 -04:00
|
|
|
</dependency>
|
2012-10-18 10:21:42 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
2019-12-22 21:32:21 -05:00
|
|
|
<artifactId>websocket-jetty-server</artifactId>
|
2012-10-18 10:21:42 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2015-02-10 22:20:06 -05:00
|
|
|
<groupId>org.eclipse.jetty.http2</groupId>
|
|
|
|
<artifactId>http2-server</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-alpn-server</artifactId>
|
2012-10-18 10:21:42 -04:00
|
|
|
<version>${project.version}</version>
|
2013-01-30 20:21:04 -05:00
|
|
|
</dependency>
|
2017-09-20 17:34:25 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2018-10-03 05:15:30 -04:00
|
|
|
<artifactId>jetty-alpn-java-server</artifactId>
|
2017-09-20 17:34:25 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-alpn-conscrypt-server</artifactId>
|
|
|
|
</dependency>
|
2013-06-06 18:48:38 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-annotations</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-09-25 15:56:32 -04:00
|
|
|
<groupId>org.eclipse.jetty.demos</groupId>
|
|
|
|
<artifactId>demo-mock-resources</artifactId>
|
2013-06-06 18:48:38 -04:00
|
|
|
</dependency>
|
2013-06-03 13:21:18 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-proxy</artifactId>
|
2014-08-01 02:16:26 -04:00
|
|
|
</dependency>
|
2014-10-22 18:11:27 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-jaas</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-plus</artifactId>
|
|
|
|
</dependency>
|
2014-08-01 02:16:26 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>apache-jsp</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>apache-jstl</artifactId>
|
2014-08-01 02:22:03 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.orbit</groupId>
|
|
|
|
<artifactId>javax.mail.glassfish</artifactId>
|
2012-10-18 10:21:42 -04:00
|
|
|
</dependency>
|
2018-10-21 20:53:59 -04:00
|
|
|
<dependency>
|
2019-02-12 08:41:05 -05:00
|
|
|
<groupId>jakarta.transaction</groupId>
|
|
|
|
<artifactId>jakarta.transaction-api</artifactId>
|
2018-10-21 20:53:59 -04:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2018-10-03 05:15:30 -04:00
|
|
|
<dependency>
|
2012-10-18 10:21:42 -04:00
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
2019-09-09 20:06:13 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
2019-12-22 21:32:21 -05:00
|
|
|
<artifactId>websocket-jetty-client</artifactId>
|
2019-09-11 10:42:56 -04:00
|
|
|
<scope>test</scope>
|
2017-06-06 11:55:12 -04:00
|
|
|
</dependency>
|
2019-09-10 10:02:07 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2020-09-21 14:57:23 -04:00
|
|
|
<artifactId>jetty-home</artifactId>
|
2020-09-23 18:43:36 -04:00
|
|
|
<type>zip</type>
|
2019-09-10 10:02:07 -04:00
|
|
|
<scope>test</scope>
|
2012-10-18 10:21:42 -04:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2019-09-10 11:36:08 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
2020-12-11 00:32:41 -05:00
|
|
|
<environmentVariables>
|
|
|
|
<mavenRepoPath>${settings.localRepository}</mavenRepoPath>
|
|
|
|
</environmentVariables>
|
2019-09-10 11:36:08 -04:00
|
|
|
<useManifestOnlyJar>false</useManifestOnlyJar>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2012-10-18 10:21:42 -04:00
|
|
|
</project>
|