2016-06-07 16:42:10 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2016-08-15 19:04:10 -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/xsd/maven-4.0.0.xsd">
|
2016-06-07 16:42:10 -04:00
|
|
|
<parent>
|
|
|
|
<artifactId>jetty-project</artifactId>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2021-06-29 11:51:22 -04:00
|
|
|
<version>10.0.7-SNAPSHOT</version>
|
2016-06-07 16:42:10 -04:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>jetty-home</artifactId>
|
|
|
|
<name>Jetty :: Home Assembly</name>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<properties>
|
2017-01-10 01:10:27 -05:00
|
|
|
<assembly-directory>${basedir}/target/jetty-home</assembly-directory>
|
2018-01-24 08:59:31 -05:00
|
|
|
<source-assembly-directory>${basedir}/target/jetty-home-sources</source-assembly-directory>
|
2020-02-27 12:56:16 -05:00
|
|
|
<jetty-setuid-version>1.0.4</jetty-setuid-version>
|
2020-12-10 20:47:26 -05:00
|
|
|
<spotbugs.skip>true</spotbugs.skip>
|
2016-06-07 16:42:10 -04:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy-base-assembly-tree</id>
|
2020-09-24 05:59:22 -04:00
|
|
|
<phase>generate-resources</phase>
|
2016-06-07 16:42:10 -04:00
|
|
|
<goals>
|
|
|
|
<goal>copy-resources</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<useBuildFilters>false</useBuildFilters>
|
|
|
|
<includeEmptyDirs>true</includeEmptyDirs>
|
|
|
|
<outputDirectory>${assembly-directory}</outputDirectory>
|
2021-09-14 01:31:55 -04:00
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
<useDefaultDelimiters>false</useDefaultDelimiters>
|
|
|
|
<delimiters>
|
|
|
|
<delimiter>@</delimiter>
|
|
|
|
</delimiters>
|
2016-06-07 16:42:10 -04:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>${basedir}/src/main/resources</directory>
|
2021-09-14 01:31:55 -04:00
|
|
|
<filtering>true</filtering>
|
2016-06-07 16:42:10 -04:00
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy</id>
|
2020-09-24 05:59:22 -04:00
|
|
|
<phase>generate-resources</phase>
|
2016-06-07 16:42:10 -04:00
|
|
|
<goals>
|
|
|
|
<goal>copy</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-project</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>version</classifier>
|
|
|
|
<type>txt</type>
|
|
|
|
<overWrite>true</overWrite>
|
|
|
|
<outputDirectory>${assembly-directory}/</outputDirectory>
|
|
|
|
<destFileName>VERSION.txt</destFileName>
|
|
|
|
</artifactItem>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-start</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2018-01-06 05:23:37 -05:00
|
|
|
<classifier>shaded</classifier>
|
2016-06-07 16:42:10 -04:00
|
|
|
<type>jar</type>
|
|
|
|
<overWrite>true</overWrite>
|
|
|
|
<includes>**</includes>
|
|
|
|
<outputDirectory>${assembly-directory}</outputDirectory>
|
|
|
|
<destFileName>start.jar</destFileName>
|
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>copy-setuid-deps</id>
|
2020-09-24 05:59:22 -04:00
|
|
|
<phase>generate-resources</phase>
|
2016-06-07 16:42:10 -04:00
|
|
|
<goals>
|
|
|
|
<goal>copy</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain.setuid</groupId>
|
|
|
|
<artifactId>jetty-setuid-java</artifactId>
|
|
|
|
<version>${jetty-setuid-version}</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<overWrite>true</overWrite>
|
|
|
|
<outputDirectory>${assembly-directory}/lib/setuid</outputDirectory>
|
|
|
|
</artifactItem>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain.setuid</groupId>
|
|
|
|
<artifactId>libsetuid-linux</artifactId>
|
|
|
|
<version>${jetty-setuid-version}</version>
|
|
|
|
<type>so</type>
|
|
|
|
<overWrite>true</overWrite>
|
|
|
|
<outputDirectory>${assembly-directory}/lib/setuid</outputDirectory>
|
|
|
|
<destFileName>libsetuid-linux.so</destFileName>
|
|
|
|
</artifactItem>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain.setuid</groupId>
|
|
|
|
<artifactId>libsetuid-osx</artifactId>
|
|
|
|
<version>${jetty-setuid-version}</version>
|
|
|
|
<type>so</type>
|
|
|
|
<overWrite>true</overWrite>
|
|
|
|
<outputDirectory>${assembly-directory}/lib/setuid</outputDirectory>
|
|
|
|
<destFileName>libsetuid-osx.so</destFileName>
|
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
|
|
|
|
<execution>
|
|
|
|
<id>copy-lib-deps</id>
|
2020-09-24 05:59:22 -04:00
|
|
|
<phase>generate-resources</phase>
|
2016-06-07 16:42:10 -04:00
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2019-02-12 08:41:05 -05:00
|
|
|
<includeGroupIds>jakarta.transaction,org.eclipse.jetty</includeGroupIds>
|
2016-06-07 16:42:10 -04:00
|
|
|
<excludeGroupIds>
|
|
|
|
org.eclipse.jetty.orbit,org.eclipse.jetty.http2,org.eclipse.jetty.websocket,org.eclipse.jetty.fcgi,org.eclipse.jetty.toolchain,org.apache.taglibs
|
|
|
|
</excludeGroupIds>
|
|
|
|
<excludeArtifactIds>
|
2020-11-16 09:18:58 -05:00
|
|
|
apache-jsp,apache-jstl,jetty-start,jetty-slf4j-impl
|
2016-06-07 16:42:10 -04:00
|
|
|
</excludeArtifactIds>
|
|
|
|
<includeTypes>jar</includeTypes>
|
|
|
|
<outputDirectory>${assembly-directory}/lib</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2018-01-24 08:59:31 -05:00
|
|
|
<execution>
|
|
|
|
<id>copy-lib-src-deps</id>
|
2020-09-24 05:59:22 -04:00
|
|
|
<phase>generate-resources</phase>
|
2018-01-24 08:59:31 -05:00
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2019-02-12 08:41:05 -05:00
|
|
|
<includeGroupIds>jakarta.transaction,org.eclipse.jetty</includeGroupIds>
|
2018-01-24 08:59:31 -05:00
|
|
|
<excludeGroupIds>
|
|
|
|
org.eclipse.jetty.orbit,org.eclipse.jetty.http2,org.eclipse.jetty.websocket,org.eclipse.jetty.fcgi,org.eclipse.jetty.toolchain,org.apache.taglibs
|
|
|
|
</excludeGroupIds>
|
|
|
|
<excludeArtifactIds>
|
2020-11-16 09:18:58 -05:00
|
|
|
apache-jsp,apache-jstl,jetty-start
|
2018-01-24 08:59:31 -05:00
|
|
|
</excludeArtifactIds>
|
|
|
|
<includeTypes>jar</includeTypes>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<outputDirectory>${source-assembly-directory}/lib</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2020-02-24 14:20:51 -05:00
|
|
|
<execution>
|
|
|
|
<id>copy-lib-logging-deps</id>
|
2020-09-24 05:59:22 -04:00
|
|
|
<phase>generate-resources</phase>
|
2020-02-24 14:20:51 -05:00
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<includeGroupIds>org.eclipse.jetty,org.slf4j</includeGroupIds>
|
|
|
|
<includeArtifactIds>jetty-slf4j-impl,slf4j-api</includeArtifactIds>
|
|
|
|
<includeTypes>jar</includeTypes>
|
|
|
|
<outputDirectory>${assembly-directory}/lib/logging</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>copy-lib-logging-src-deps</id>
|
2020-09-24 05:59:22 -04:00
|
|
|
<phase>generate-resources</phase>
|
2020-02-24 14:20:51 -05:00
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<includeGroupIds>org.eclipse.jetty,org.slf4j</includeGroupIds>
|
|
|
|
<includeArtifactIds>jetty-slf4j-impl,slf4j-api</includeArtifactIds>
|
|
|
|
<includeTypes>jar</includeTypes>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<outputDirectory>${source-assembly-directory}/lib/logging</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2016-06-07 16:42:10 -04:00
|
|
|
<execution>
|
|
|
|
<id>copy-lib-websocket-deps</id>
|
2020-09-24 05:59:22 -04:00
|
|
|
<phase>generate-resources</phase>
|
2016-06-07 16:42:10 -04:00
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2019-07-02 20:48:26 -04:00
|
|
|
<includeGroupIds>org.eclipse.jetty.websocket</includeGroupIds>
|
2016-06-07 16:42:10 -04:00
|
|
|
<includeTypes>jar</includeTypes>
|
|
|
|
<outputDirectory>${assembly-directory}/lib/websocket</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2018-02-21 02:05:56 -05:00
|
|
|
<execution>
|
|
|
|
<id>copy-lib-websocket-src-deps</id>
|
2020-09-24 05:59:22 -04:00
|
|
|
<phase>generate-resources</phase>
|
2018-02-21 02:05:56 -05:00
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2019-07-02 20:48:26 -04:00
|
|
|
<includeGroupIds>org.eclipse.jetty.websocket</includeGroupIds>
|
|
|
|
<includeTypes>jar</includeTypes>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<outputDirectory>${source-assembly-directory}/lib/websocket</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>copy-lib-javax-websocket-deps</id>
|
2020-09-24 05:59:22 -04:00
|
|
|
<phase>generate-resources</phase>
|
2019-07-02 20:48:26 -04:00
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<includeGroupIds>org.eclipse.jetty.toolchain</includeGroupIds>
|
|
|
|
<includeArtifactIds>jetty-javax-websocket-api</includeArtifactIds>
|
|
|
|
<includeTypes>jar</includeTypes>
|
|
|
|
<outputDirectory>${assembly-directory}/lib/websocket</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>copy-lib-javax-websocket-src-deps</id>
|
2020-09-24 05:59:22 -04:00
|
|
|
<phase>generate-resources</phase>
|
2019-07-02 20:48:26 -04:00
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<includeGroupIds>org.eclipse.jetty.toolchain</includeGroupIds>
|
|
|
|
<includeArtifactIds>jetty-javax-websocket-api</includeArtifactIds>
|
2018-02-21 02:05:56 -05:00
|
|
|
<includeTypes>jar</includeTypes>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<outputDirectory>${source-assembly-directory}/lib/websocket</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2016-06-07 16:42:10 -04:00
|
|
|
<execution>
|
|
|
|
<id>copy-lib-http2-deps</id>
|
2020-09-24 05:59:22 -04:00
|
|
|
<phase>generate-resources</phase>
|
2016-06-07 16:42:10 -04:00
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<includeGroupIds>org.eclipse.jetty.http2</includeGroupIds>
|
|
|
|
<includeArtifactIds>http2-hpack,http2-common,http2-server</includeArtifactIds>
|
|
|
|
<includeTypes>jar</includeTypes>
|
|
|
|
<outputDirectory>${assembly-directory}/lib/http2</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2018-02-21 02:05:56 -05:00
|
|
|
<execution>
|
|
|
|
<id>copy-lib-http2-src-deps</id>
|
2020-09-24 05:59:22 -04:00
|
|
|
<phase>generate-resources</phase>
|
2018-02-21 02:05:56 -05:00
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<includeGroupIds>org.eclipse.jetty.http2</includeGroupIds>
|
|
|
|
<includeArtifactIds>http2-hpack,http2-common,http2-server</includeArtifactIds>
|
|
|
|
<includeTypes>jar</includeTypes>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<outputDirectory>${source-assembly-directory}/lib/http2</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2016-06-07 16:42:10 -04:00
|
|
|
<execution>
|
|
|
|
<id>copy-lib-fcgi-deps</id>
|
2020-09-24 05:59:22 -04:00
|
|
|
<phase>generate-resources</phase>
|
2016-06-07 16:42:10 -04:00
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<includeGroupIds>org.eclipse.jetty.fcgi</includeGroupIds>
|
|
|
|
<includeTypes>jar</includeTypes>
|
|
|
|
<outputDirectory>${assembly-directory}/lib/fcgi</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2018-02-21 02:05:56 -05:00
|
|
|
<execution>
|
|
|
|
<id>copy-lib-fcgi-src-deps</id>
|
2020-09-24 05:59:22 -04:00
|
|
|
<phase>generate-resources</phase>
|
2018-02-21 02:05:56 -05:00
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<includeGroupIds>org.eclipse.jetty.fcgi</includeGroupIds>
|
|
|
|
<includeTypes>jar</includeTypes>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<outputDirectory>${source-assembly-directory}/lib/fcgi</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2016-06-07 16:42:10 -04:00
|
|
|
<execution>
|
|
|
|
<id>copy-servlet-api-deps</id>
|
2020-09-24 05:59:22 -04:00
|
|
|
<phase>generate-resources</phase>
|
2016-06-07 16:42:10 -04:00
|
|
|
<goals>
|
|
|
|
<goal>copy</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
2018-11-29 10:51:29 -05:00
|
|
|
<artifactId>jetty-servlet-api</artifactId>
|
2021-09-22 10:54:52 -04:00
|
|
|
<version>${jakarta.servlet.api.version}</version>
|
2016-06-07 16:42:10 -04:00
|
|
|
<overWrite>true</overWrite>
|
|
|
|
<outputDirectory>${assembly-directory}/lib</outputDirectory>
|
2021-09-22 10:54:52 -04:00
|
|
|
<destFileName>jetty-servlet-api-${jakarta.servlet.api.version}.jar</destFileName>
|
2016-06-07 16:42:10 -04:00
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2018-04-03 01:24:13 -04:00
|
|
|
<execution>
|
|
|
|
<id>copy-servlet-src-deps</id>
|
2020-09-24 05:59:22 -04:00
|
|
|
<phase>generate-resources</phase>
|
2018-04-03 01:24:13 -04:00
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2019-02-04 12:46:53 -05:00
|
|
|
<includeGroupIds>org.eclipse.jetty.toolchain</includeGroupIds>
|
2018-04-03 01:24:13 -04:00
|
|
|
<includeTypes>jar</includeTypes>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<outputDirectory>${source-assembly-directory}/lib/servlet-api</outputDirectory>
|
|
|
|
</configuration>
|
2016-06-07 16:42:10 -04:00
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>copy-annotations-deps</id>
|
2020-09-24 05:59:22 -04:00
|
|
|
<phase>generate-resources</phase>
|
2016-06-07 16:42:10 -04:00
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2019-02-12 12:56:16 -05:00
|
|
|
<includeGroupIds>jakarta.annotation,org.eclipse.jetty.orbit,org.ow2.asm</includeGroupIds>
|
|
|
|
<includeArtifactIds>jakarta.annotation-api,asm,asm-commons,asm-tree,asm-analysis</includeArtifactIds>
|
2016-06-07 16:42:10 -04:00
|
|
|
<includeTypes>jar</includeTypes>
|
|
|
|
<outputDirectory>${assembly-directory}/lib/annotations</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2018-02-21 02:05:56 -05:00
|
|
|
<execution>
|
|
|
|
<id>copy-annotations-src-deps</id>
|
2020-09-24 05:59:22 -04:00
|
|
|
<phase>generate-resources</phase>
|
2018-02-21 02:05:56 -05:00
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2019-02-12 12:56:16 -05:00
|
|
|
<includeGroupIds>jakarta.annotation,org.eclipse.jetty.orbit,org.ow2.asm</includeGroupIds>
|
|
|
|
<includeArtifactIds>jakarta.annotation-api,asm,asm-commons,asm-tree,asm-analysis</includeArtifactIds>
|
2018-02-21 02:05:56 -05:00
|
|
|
<includeTypes>jar</includeTypes>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<outputDirectory>${source-assembly-directory}/lib/annotations</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2016-06-07 16:42:10 -04:00
|
|
|
<execution>
|
|
|
|
<id>copy-apache-jsp-deps</id>
|
2020-09-24 05:59:22 -04:00
|
|
|
<phase>generate-resources</phase>
|
2016-06-07 16:42:10 -04:00
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<includeGroupIds>
|
2017-10-19 00:08:02 -04:00
|
|
|
org.eclipse.jetty,org.eclipse.jetty.toolchain,org.mortbay.jasper,org.eclipse.jdt
|
2016-06-07 16:42:10 -04:00
|
|
|
</includeGroupIds>
|
|
|
|
<includeArtifactIds>apache-jsp,apache-el,ecj</includeArtifactIds>
|
|
|
|
<includeTypes>jar</includeTypes>
|
|
|
|
<prependGroupId>true</prependGroupId>
|
|
|
|
<outputDirectory>${assembly-directory}/lib/apache-jsp</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2018-02-21 02:05:56 -05:00
|
|
|
<execution>
|
|
|
|
<id>copy-apache-jsp-src-deps</id>
|
2020-09-24 05:59:22 -04:00
|
|
|
<phase>generate-resources</phase>
|
2018-02-21 02:05:56 -05:00
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<includeGroupIds>
|
|
|
|
org.eclipse.jetty,org.eclipse.jetty.toolchain,org.mortbay.jasper,org.eclipse.jdt
|
|
|
|
</includeGroupIds>
|
|
|
|
<includeArtifactIds>apache-jsp,apache-el,ecj</includeArtifactIds>
|
|
|
|
<includeTypes>jar</includeTypes>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<prependGroupId>true</prependGroupId>
|
|
|
|
<outputDirectory>${source-assembly-directory}/lib/apache-jsp</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2016-06-07 16:42:10 -04:00
|
|
|
<execution>
|
|
|
|
<id>copy-apache-jstl-deps</id>
|
2020-09-24 05:59:22 -04:00
|
|
|
<phase>generate-resources</phase>
|
2016-06-07 16:42:10 -04:00
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<excludeGroupIds>org.glassfish.web</excludeGroupIds>
|
|
|
|
<includeArtifactIds>taglibs-standard-spec,taglibs-standard-impl</includeArtifactIds>
|
|
|
|
<prependGroupId>true</prependGroupId>
|
|
|
|
<includeTypes>jar</includeTypes>
|
|
|
|
<outputDirectory>${assembly-directory}/lib/apache-jstl</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2018-02-21 02:05:56 -05:00
|
|
|
<execution>
|
|
|
|
<id>copy-apache-jstl-src-deps</id>
|
2020-09-24 05:59:22 -04:00
|
|
|
<phase>generate-resources</phase>
|
2018-02-21 02:05:56 -05:00
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<excludeGroupIds>org.glassfish.web</excludeGroupIds>
|
|
|
|
<includeArtifactIds>taglibs-standard-spec,taglibs-standard-impl</includeArtifactIds>
|
|
|
|
<prependGroupId>true</prependGroupId>
|
|
|
|
<includeTypes>jar</includeTypes>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<outputDirectory>${source-assembly-directory}/lib/apache-jstl</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2016-06-07 16:42:10 -04:00
|
|
|
<execution>
|
|
|
|
<id>copy-jaspi-deps</id>
|
2020-09-24 05:59:22 -04:00
|
|
|
<phase>generate-resources</phase>
|
2016-06-07 16:42:10 -04:00
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<includeGroupIds>org.eclipse.jetty.orbit</includeGroupIds>
|
|
|
|
<includeArtifactIds>javax.security.auth.message</includeArtifactIds>
|
|
|
|
<includeTypes>jar</includeTypes>
|
|
|
|
<outputDirectory>${assembly-directory}/lib/jaspi</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2018-02-21 02:05:56 -05:00
|
|
|
<execution>
|
|
|
|
<id>copy-jaspi-src-deps</id>
|
2020-09-24 05:59:22 -04:00
|
|
|
<phase>generate-resources</phase>
|
2018-02-21 02:05:56 -05:00
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<includeGroupIds>org.eclipse.jetty.orbit</includeGroupIds>
|
|
|
|
<includeArtifactIds>javax.security.auth.message</includeArtifactIds>
|
|
|
|
<includeTypes>jar</includeTypes>
|
|
|
|
<classifier>sources</classifier>
|
|
|
|
<outputDirectory>${source-assembly-directory}/lib/jaspi</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2016-06-07 16:42:10 -04:00
|
|
|
<execution>
|
|
|
|
<id>unpack-config-deps</id>
|
2020-09-24 05:59:22 -04:00
|
|
|
<phase>generate-resources</phase>
|
2016-06-07 16:42:10 -04:00
|
|
|
<goals>
|
|
|
|
<goal>unpack-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2020-09-23 14:35:19 -04:00
|
|
|
<includeGroupIds>
|
|
|
|
org.eclipse.jetty, org.eclipse.jetty.websocket, org.eclipse.jetty.demos
|
|
|
|
</includeGroupIds>
|
2019-08-01 23:27:11 -04:00
|
|
|
<excludeArtifactIds>infinispan-embedded,infinispan-remote,jetty-test-helper,alpn-api,javax.security.auth.message,javax.activation</excludeArtifactIds>
|
2016-06-07 16:42:10 -04:00
|
|
|
<classifier>config</classifier>
|
|
|
|
<failOnMissingClassifierArtifact>false</failOnMissingClassifierArtifact>
|
2021-02-11 09:04:29 -05:00
|
|
|
<excludes>META-INF/**,webapps/**,start.d/**,start.ini</excludes>
|
2016-06-07 16:42:10 -04:00
|
|
|
<outputDirectory>${assembly-directory}</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2019-04-18 03:24:25 -04:00
|
|
|
<execution>
|
|
|
|
<id>unpack-infinispan-config</id>
|
2020-09-24 05:59:22 -04:00
|
|
|
<phase>generate-resources</phase>
|
2019-04-18 03:24:25 -04:00
|
|
|
<goals>
|
|
|
|
<goal>unpack</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>infinispan-embedded</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>config</classifier>
|
|
|
|
<type>jar</type>
|
|
|
|
</artifactItem>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>infinispan-remote</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>config</classifier>
|
|
|
|
<type>jar</type>
|
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
|
|
|
<excludes>META-INF/**</excludes>
|
|
|
|
<outputDirectory>${assembly-directory}</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2016-06-07 16:42:10 -04:00
|
|
|
</executions>
|
|
|
|
</plugin>
|
2017-01-10 01:10:27 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>set jetty.sh</id>
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2020-11-03 09:46:27 -05:00
|
|
|
<target>
|
2017-01-10 01:10:27 -05:00
|
|
|
<chmod dir="${assembly-directory}/bin" perm="755" includes="**/*.sh" />
|
2020-11-03 09:46:27 -05:00
|
|
|
</target>
|
2017-01-10 01:10:27 -05:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2016-06-07 16:42:10 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<configuration>
|
2017-11-06 02:24:09 -05:00
|
|
|
<tarLongFileMode>posix</tarLongFileMode>
|
2016-06-07 16:42:10 -04:00
|
|
|
<appendAssemblyId>false</appendAssemblyId>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
2018-01-24 08:59:31 -05:00
|
|
|
<id>binary</id>
|
2016-06-07 16:42:10 -04:00
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
2018-01-24 08:59:31 -05:00
|
|
|
<configuration>
|
2020-10-21 16:25:47 -04:00
|
|
|
<overrideUid>0</overrideUid>
|
|
|
|
<overrideGid>0</overrideGid>
|
2018-01-24 08:59:31 -05:00
|
|
|
<descriptors>
|
|
|
|
<descriptor>src/main/assembly/jetty-assembly.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>sources</id>
|
2016-06-07 16:42:10 -04:00
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
2018-01-24 08:59:31 -05:00
|
|
|
<configuration>
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>src/main/assembly/jetty-source-assembly.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
<appendAssemblyId>true</appendAssemblyId>
|
|
|
|
</configuration>
|
2016-06-07 16:42:10 -04:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2021-08-05 04:04:37 -04:00
|
|
|
|
2016-06-07 16:42:10 -04:00
|
|
|
<dependencies>
|
|
|
|
<!-- Orbit Deps -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.orbit</groupId>
|
|
|
|
<artifactId>javax.mail.glassfish</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.orbit</groupId>
|
|
|
|
<artifactId>javax.security.auth.message</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2019-02-12 12:56:16 -05:00
|
|
|
<groupId>jakarta.annotation</groupId>
|
|
|
|
<artifactId>jakarta.annotation-api</artifactId>
|
2016-06-07 16:42:10 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2019-02-12 08:41:05 -05:00
|
|
|
<groupId>jakarta.transaction</groupId>
|
|
|
|
<artifactId>jakarta.transaction-api</artifactId>
|
2016-06-07 16:42:10 -04:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
|
<artifactId>asm</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
|
<artifactId>asm-commons</artifactId>
|
|
|
|
</dependency>
|
2018-09-17 18:35:29 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
|
<artifactId>asm-tree</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
|
<artifactId>asm-analysis</artifactId>
|
|
|
|
</dependency>
|
2016-06-07 16:42:10 -04:00
|
|
|
|
|
|
|
<!-- jetty deps -->
|
2020-02-24 14:20:51 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-slf4j-impl</artifactId>
|
2020-03-20 12:12:08 -04:00
|
|
|
<scope>test</scope>
|
2020-02-24 14:20:51 -05:00
|
|
|
</dependency>
|
2016-06-07 16:42:10 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-deploy</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-jmx</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-quickstart</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-start</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2018-01-06 05:23:37 -05:00
|
|
|
<classifier>shaded</classifier>
|
2016-06-07 16:42:10 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-servlets</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</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
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2016-06-07 16:42:10 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
2019-12-22 21:32:21 -05:00
|
|
|
<artifactId>websocket-jetty-server</artifactId>
|
2016-06-07 16:42:10 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
2020-11-03 01:16:27 -05:00
|
|
|
<artifactId>websocket-jetty-client</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
2019-12-22 21:32:21 -05:00
|
|
|
<artifactId>websocket-javax-server</artifactId>
|
2016-06-07 16:42:10 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>apache-jsp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>apache-jstl</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2021-09-13 16:10:48 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>javax.el</groupId>
|
|
|
|
<artifactId>el-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2016-06-07 16:42:10 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-plus</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-client</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-proxy</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2021-08-05 04:04:37 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-unixdomain-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2016-06-07 16:42:10 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2019-02-12 07:05:41 -05:00
|
|
|
<artifactId>jetty-unixsocket-server</artifactId>
|
2016-06-07 16:42:10 -04:00
|
|
|
<version>${project.version}</version>
|
2020-09-23 18:50:50 -04:00
|
|
|
<optional>true</optional>
|
2016-06-07 16:42:10 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.fcgi</groupId>
|
|
|
|
<artifactId>fcgi-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2020-09-23 18:50:50 -04:00
|
|
|
<optional>true</optional>
|
2016-06-07 16:42:10 -04:00
|
|
|
</dependency>
|
2018-12-21 06:35:31 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.logging</groupId>
|
|
|
|
<artifactId>jboss-logging</artifactId>
|
2020-09-23 18:50:50 -04:00
|
|
|
<optional>true</optional>
|
2018-12-21 06:35:31 -05:00
|
|
|
</dependency>
|
2016-06-07 16:42:10 -04:00
|
|
|
<dependency>
|
2019-08-07 22:04:07 -04:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-cdi</artifactId>
|
2016-06-07 16:42:10 -04:00
|
|
|
<version>${project.version}</version>
|
2020-09-23 18:50:50 -04:00
|
|
|
<optional>true</optional>
|
2016-06-07 16:42:10 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-jaas</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2020-09-23 18:50:50 -04:00
|
|
|
<optional>true</optional>
|
2016-06-07 16:42:10 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-annotations</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-rewrite</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.http2</groupId>
|
|
|
|
<artifactId>http2-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-alpn-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</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
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2019-08-28 17:39:19 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-openid</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2020-09-23 18:50:50 -04:00
|
|
|
<optional>true</optional>
|
2019-08-28 17:39:19 -04:00
|
|
|
</dependency>
|
2017-09-20 17:34:25 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-alpn-conscrypt-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2016-06-07 16:42:10 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-jaspi</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2020-09-23 18:50:50 -04:00
|
|
|
<optional>true</optional>
|
2016-06-07 16:42:10 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2019-04-18 03:24:25 -04:00
|
|
|
<artifactId>infinispan-embedded</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>pom</type>
|
2020-09-23 18:50:50 -04:00
|
|
|
<optional>true</optional>
|
2019-04-18 03:24:25 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>infinispan-embedded-query</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2020-09-23 18:50:50 -04:00
|
|
|
<optional>true</optional>
|
2019-04-18 03:24:25 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>infinispan-remote</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>pom</type>
|
2020-09-23 18:50:50 -04:00
|
|
|
<optional>true</optional>
|
2021-09-20 21:16:50 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.wildfly.common</groupId>
|
|
|
|
<artifactId>*</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2019-04-18 03:24:25 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>infinispan-remote-query</artifactId>
|
2017-05-29 00:47:18 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-hazelcast</artifactId>
|
2016-06-07 16:42:10 -04:00
|
|
|
<version>${project.version}</version>
|
2020-09-23 18:50:50 -04:00
|
|
|
<optional>true</optional>
|
2016-06-07 16:42:10 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.gcloud</groupId>
|
|
|
|
<artifactId>jetty-gcloud-session-manager</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2020-09-23 18:50:50 -04:00
|
|
|
<optional>true</optional>
|
2016-06-07 16:42:10 -04:00
|
|
|
</dependency>
|
2016-06-15 20:31:36 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.memcached</groupId>
|
|
|
|
<artifactId>jetty-memcached-sessions</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2020-09-23 18:50:50 -04:00
|
|
|
<optional>true</optional>
|
2016-06-15 20:31:36 -04:00
|
|
|
</dependency>
|
2016-06-07 16:42:10 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-nosql</artifactId>
|
2021-01-06 02:07:42 -05:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2021-01-07 23:32:21 -05:00
|
|
|
<artifactId>jetty-keystore</artifactId>
|
2016-06-07 16:42:10 -04:00
|
|
|
<version>${project.version}</version>
|
2020-09-23 18:50:50 -04:00
|
|
|
<optional>true</optional>
|
2016-06-07 16:42:10 -04:00
|
|
|
</dependency>
|
2020-09-21 14:57:23 -04:00
|
|
|
<!-- Demo Apps -->
|
2020-09-29 12:37:22 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.demos</groupId>
|
|
|
|
<artifactId>demo-mock-resources</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>config</classifier>
|
|
|
|
<type>jar</type>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2020-09-21 14:57:23 -04:00
|
|
|
<dependency>
|
2020-09-23 14:35:19 -04:00
|
|
|
<groupId>org.eclipse.jetty.demos</groupId>
|
|
|
|
<artifactId>demo-jetty-webapp</artifactId>
|
2020-09-21 14:57:23 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>config</classifier>
|
|
|
|
<type>jar</type>
|
2020-09-23 18:50:50 -04:00
|
|
|
<optional>true</optional>
|
2021-09-13 16:10:48 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>javax.el</groupId>
|
|
|
|
<artifactId>el-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2020-09-21 14:57:23 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-09-23 14:35:19 -04:00
|
|
|
<groupId>org.eclipse.jetty.demos</groupId>
|
|
|
|
<artifactId>demo-jaas-webapp</artifactId>
|
2020-09-21 14:57:23 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>config</classifier>
|
|
|
|
<type>jar</type>
|
2020-09-23 18:50:50 -04:00
|
|
|
<optional>true</optional>
|
2020-09-21 14:57:23 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-09-23 14:35:19 -04:00
|
|
|
<groupId>org.eclipse.jetty.demos</groupId>
|
|
|
|
<artifactId>demo-jndi-webapp</artifactId>
|
2020-09-21 14:57:23 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>config</classifier>
|
|
|
|
<type>jar</type>
|
2020-09-23 18:50:50 -04:00
|
|
|
<optional>true</optional>
|
2020-09-21 14:57:23 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-09-23 14:35:19 -04:00
|
|
|
<groupId>org.eclipse.jetty.demos</groupId>
|
|
|
|
<artifactId>demo-spec-webapp</artifactId>
|
2020-09-21 14:57:23 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>config</classifier>
|
|
|
|
<type>jar</type>
|
2020-09-23 18:50:50 -04:00
|
|
|
<optional>true</optional>
|
2020-09-21 14:57:23 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-09-23 14:35:19 -04:00
|
|
|
<groupId>org.eclipse.jetty.demos</groupId>
|
|
|
|
<artifactId>demo-async-rest-webapp</artifactId>
|
2020-09-21 14:57:23 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>config</classifier>
|
|
|
|
<type>jar</type>
|
2020-09-23 18:50:50 -04:00
|
|
|
<optional>true</optional>
|
2020-09-21 14:57:23 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-09-23 14:35:19 -04:00
|
|
|
<groupId>org.eclipse.jetty.demos</groupId>
|
|
|
|
<artifactId>demo-proxy-webapp</artifactId>
|
2020-09-21 14:57:23 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>config</classifier>
|
|
|
|
<type>jar</type>
|
2020-09-23 18:50:50 -04:00
|
|
|
<optional>true</optional>
|
2020-09-21 14:57:23 -04:00
|
|
|
</dependency>
|
2021-01-21 09:27:03 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.demos</groupId>
|
|
|
|
<artifactId>demo-simple-webapp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>config</classifier>
|
|
|
|
<type>jar</type>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.demos</groupId>
|
|
|
|
<artifactId>demo-jsp-webapp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>config</classifier>
|
|
|
|
<type>jar</type>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2021-09-14 01:31:55 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-api</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-core</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2016-06-07 16:42:10 -04:00
|
|
|
</dependencies>
|
2017-01-12 11:52:45 -05:00
|
|
|
|
2016-06-15 20:31:36 -04:00
|
|
|
</project>
|