1163 lines
45 KiB
XML
1163 lines
45 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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">
|
|
<parent>
|
|
<artifactId>jetty-project</artifactId>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<version>12.0.0-SNAPSHOT</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>jetty-home</artifactId>
|
|
<name>Jetty :: Home Assembly</name>
|
|
<packaging>pom</packaging>
|
|
|
|
<properties>
|
|
<assembly-directory>${basedir}/target/jetty-home</assembly-directory>
|
|
<source-assembly-directory>${basedir}/target/jetty-home-sources</source-assembly-directory>
|
|
<jetty-setuid-version>1.0.4</jetty-setuid-version>
|
|
<spotbugs.skip>true</spotbugs.skip>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>copy-base-assembly-tree</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>copy-resources</goal>
|
|
</goals>
|
|
<configuration>
|
|
<useBuildFilters>false</useBuildFilters>
|
|
<includeEmptyDirs>true</includeEmptyDirs>
|
|
<outputDirectory>${assembly-directory}</outputDirectory>
|
|
<encoding>UTF-8</encoding>
|
|
<useDefaultDelimiters>false</useDefaultDelimiters>
|
|
<delimiters>
|
|
<delimiter>@</delimiter>
|
|
</delimiters>
|
|
<resources>
|
|
<resource>
|
|
<directory>${basedir}/src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>copy</id>
|
|
<phase>generate-resources</phase>
|
|
<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>
|
|
<classifier>shaded</classifier>
|
|
<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>
|
|
<phase>generate-resources</phase>
|
|
<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-jetty-core-deps</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<includeGroupIds>jakarta.transaction,org.eclipse.jetty</includeGroupIds>
|
|
<excludeGroupIds>
|
|
org.eclipse.jetty.demo,org.eclipse.jetty.orbit,org.eclipse.jetty.http2,org.eclipse.jetty.http3,org.eclipse.jetty.quic,org.eclipse.jetty.ee9.websocket,org.eclipse.jetty.ee10.websocket,org.eclipse.jetty.ee9,org.eclipse.jetty.ee10,org.eclipse.jetty.fcgi,org.eclipse.jetty.toolchain,org.apache.taglibs
|
|
</excludeGroupIds>
|
|
<excludeArtifactIds>
|
|
apache-jsp,glassfish-jstl,jetty-start,jetty-slf4j-impl
|
|
</excludeArtifactIds>
|
|
<includeTypes>jar</includeTypes>
|
|
<outputDirectory>${assembly-directory}/lib</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>copy-jetty-core-src-deps</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<includeGroupIds>jakarta.transaction,org.eclipse.jetty</includeGroupIds>
|
|
<excludeGroupIds>
|
|
org.eclipse.jetty.orbit,org.eclipse.jetty.http2,org.eclipse.jetty.http3,org.eclipse.jetty.quic,org.eclipse.jetty.websocket,org.eclipse.jetty.ee9,org.eclipse.jetty.fcgi,org.eclipse.jetty.toolchain,org.apache.taglibs
|
|
</excludeGroupIds>
|
|
<excludeArtifactIds>
|
|
apache-jsp,glassfish-jstl,jetty-start
|
|
</excludeArtifactIds>
|
|
<includeTypes>jar</includeTypes>
|
|
<classifier>sources</classifier>
|
|
<outputDirectory>${source-assembly-directory}/lib</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>copy-lib-logging-deps</id>
|
|
<phase>generate-resources</phase>
|
|
<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>
|
|
<phase>generate-resources</phase>
|
|
<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>
|
|
<execution>
|
|
<id>copy-lib-websocket-core-deps</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<includeGroupIds>org.eclipse.jetty.websocket</includeGroupIds>
|
|
<includeTypes>jar</includeTypes>
|
|
<outputDirectory>${assembly-directory}/lib/websocket</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>copy-lib-websocket-core-src-deps</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<includeGroupIds>org.eclipse.jetty.websocket</includeGroupIds>
|
|
<includeTypes>jar</includeTypes>
|
|
<classifier>sources</classifier>
|
|
<outputDirectory>${source-assembly-directory}/core/websocket</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>copy-lib-ee-websocket-deps</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<includeGroupIds>org.eclipse.jetty.toolchain,org.eclipse.jetty.ee9.websocket,org.eclipse.jetty.ee10.websocket</includeGroupIds>
|
|
<excludeArtifactIds>jetty-jakarta-servlet-api,jetty-schemas,jetty-test-helper</excludeArtifactIds>
|
|
<includeTypes>jar</includeTypes>
|
|
<outputDirectory>${assembly-directory}/lib/websocket</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>copy-lib-ee-websocket-src-deps</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<includeGroupIds>org.eclipse.jetty.toolchain,org.eclipse.jetty.ee10.websocket</includeGroupIds>
|
|
<includeTypes>jar</includeTypes>
|
|
<classifier>sources</classifier>
|
|
<outputDirectory>${source-assembly-directory}/lib/websocket</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>copy-lib-servlet-api-deps</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>copy</goal>
|
|
</goals>
|
|
<configuration>
|
|
<artifactItems>
|
|
<artifactItem>
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
<artifactId>jetty-jakarta-servlet-api</artifactId>
|
|
<!-- FIXME MUST BE A PROPERTY -->
|
|
<version>6.0.0-SNAPSHOT</version>
|
|
</artifactItem>
|
|
<artifactItem>
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
<artifactId>jetty-jakarta-servlet-api</artifactId>
|
|
<!-- FIXME MUST BE A PROPERTY -->
|
|
<version>5.0.2</version>
|
|
</artifactItem>
|
|
</artifactItems>
|
|
<outputDirectory>${assembly-directory}/lib</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>copy-lib-servlet-api-src-deps</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>copy</goal>
|
|
</goals>
|
|
<configuration>
|
|
<artifactItems>
|
|
<artifactItem>
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
<artifactId>jetty-jakarta-servlet-api</artifactId>
|
|
<!-- FIXME MUST BE A PROPERTY -->
|
|
<version>6.0.0-SNAPSHOT</version>
|
|
<classifier>sources</classifier>
|
|
</artifactItem>
|
|
<artifactItem>
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
<artifactId>jetty-jakarta-servlet-api</artifactId>
|
|
<!-- FIXME MUST BE A PROPERTY -->
|
|
<version>5.0.2</version>
|
|
<classifier>sources</classifier>
|
|
</artifactItem>
|
|
</artifactItems>
|
|
<outputDirectory>${source-assembly-directory}/lib</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>copy-lib-http2-deps</id>
|
|
<phase>generate-resources</phase>
|
|
<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>
|
|
<execution>
|
|
<id>copy-lib-http2-src-deps</id>
|
|
<phase>generate-resources</phase>
|
|
<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>
|
|
<execution>
|
|
<id>copy-lib-http3-deps</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<includeGroupIds>org.eclipse.jetty.http3,org.eclipse.jetty.quic,org.eclipse.jetty.quiche</includeGroupIds>
|
|
<includeArtifactIds>http3-server,http3-common,http3-qpack,quic-server,quic-common,quic-quiche-common,quic-quiche-jna,quic-quiche-foreign-incubator,jetty-quiche-native</includeArtifactIds>
|
|
<includeTypes>jar</includeTypes>
|
|
<outputDirectory>${assembly-directory}/lib/http3</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>copy-lib-http3-src-deps</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<includeGroupIds>org.eclipse.jetty.http3</includeGroupIds>
|
|
<includeArtifactIds>http3-server</includeArtifactIds>
|
|
<includeTypes>jar</includeTypes>
|
|
<classifier>sources</classifier>
|
|
<outputDirectory>${source-assembly-directory}/lib/http3</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>copy-lib-fcgi-deps</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<includeGroupIds>org.eclipse.jetty.fcgi</includeGroupIds>
|
|
<includeTypes>jar</includeTypes>
|
|
<outputDirectory>${assembly-directory}/lib/fcgi</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>copy-lib-fcgi-src-deps</id>
|
|
<phase>generate-resources</phase>
|
|
<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>
|
|
<execution>
|
|
<id>copy-ee10-annotations-deps</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<includeGroupIds>jakarta.annotation,org.eclipse.jetty.orbit,org.ow2.asm</includeGroupIds>
|
|
<includeArtifactIds>jakarta.annotation-api,asm,asm-commons,asm-tree,asm-analysis</includeArtifactIds>
|
|
<includeTypes>jar</includeTypes>
|
|
<outputDirectory>${assembly-directory}/lib/ee10-annotations</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>copy-ee10-annotations-src-deps</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<includeGroupIds>jakarta.annotation,org.eclipse.jetty.orbit,org.ow2.asm</includeGroupIds>
|
|
<includeArtifactIds>jakarta.annotation-api,asm,asm-commons,asm-tree,asm-analysis</includeArtifactIds>
|
|
<includeTypes>jar</includeTypes>
|
|
<classifier>sources</classifier>
|
|
<outputDirectory>${source-assembly-directory}/lib/ee10-annotations</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
<!-- TODO: ee9 annotations -->
|
|
<execution>
|
|
<id>copy-ee10-apache-jsp-deps</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<includeGroupIds>
|
|
org.eclipse.jetty.toolchain,org.mortbay.jasper,org.eclipse.jdt
|
|
</includeGroupIds>
|
|
<includeArtifactIds>apache-jsp,apache-el,ecj</includeArtifactIds>
|
|
<includeTypes>jar</includeTypes>
|
|
<prependGroupId>true</prependGroupId>
|
|
<outputDirectory>${assembly-directory}/lib/ee10-apache-jsp</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>copy-ee10-apache-jsp-src-deps</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<includeGroupIds>
|
|
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/ee10-apache-jsp</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>copy-ee10-glassfish-jstl-deps</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<includeArtifactIds>jakarta.servlet.jsp.jstl-api,jakarta.servlet.jsp.jstl</includeArtifactIds>
|
|
<prependGroupId>true</prependGroupId>
|
|
<includeTypes>jar</includeTypes>
|
|
<outputDirectory>${assembly-directory}/lib/ee10-glassfish-jstl</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>copy-ee10-glassfish-jstl-src-deps</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<includeArtifactIds>jakarta.servlet.jsp.jstl-api,jakarta.servlet.jsp.jstl</includeArtifactIds>
|
|
<prependGroupId>true</prependGroupId>
|
|
<includeTypes>jar</includeTypes>
|
|
<classifier>sources</classifier>
|
|
<outputDirectory>${source-assembly-directory}/lib/ee10-glassfish-jstl</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
<!-- TODO: add copy deps for ee9 apache-jsp and jstl -->
|
|
<execution>
|
|
<id>copy-ee10-jaspi-deps</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<includeGroupIds>jakarta.authentication</includeGroupIds>
|
|
<includeArtifactIds>jakarta.authentication-api</includeArtifactIds>
|
|
<includeTypes>jar</includeTypes>
|
|
<outputDirectory>${assembly-directory}/lib/ee10-jaspi</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>copy-ee10-jaspi-src-deps</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<includeGroupIds>jakarta.authentication</includeGroupIds>
|
|
<includeArtifactIds>jakarta.authentication-api</includeArtifactIds>
|
|
<includeTypes>jar</includeTypes>
|
|
<classifier>sources</classifier>
|
|
<outputDirectory>${source-assembly-directory}/lib/ee10-jaspi</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
<!-- TODO: ee9 jaspi -->
|
|
|
|
<execution>
|
|
<id>copy-ee9-deps</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<includeGroupIds>org.eclipse.jetty.ee9</includeGroupIds>
|
|
<excludeGroupIds>org.eclipse.jetty.ee9.demos</excludeGroupIds>
|
|
<!-- <includeArtifactIds></includeArtifactIds>-->
|
|
<includeTypes>jar</includeTypes>
|
|
<outputDirectory>${assembly-directory}/lib</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>copy-ee9-src-deps</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<includeGroupIds>org.eclipse.jetty.ee9</includeGroupIds>
|
|
<!-- <includeArtifactIds></includeArtifactIds>-->
|
|
<excludeGroupIds>org.eclipse.jetty.ee9.demos</excludeGroupIds>
|
|
<includeTypes>jar</includeTypes>
|
|
<classifier>sources</classifier>
|
|
<outputDirectory>${source-assembly-directory}/lib</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
|
|
<execution>
|
|
<id>copy-ee10-deps</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<includeGroupIds>org.eclipse.jetty.ee10</includeGroupIds>
|
|
<!-- <includeArtifactIds></includeArtifactIds>-->
|
|
<excludeGroupIds>org.eclipse.jetty.ee10.demos</excludeGroupIds>
|
|
<includeTypes>jar</includeTypes>
|
|
<outputDirectory>${assembly-directory}/lib</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>copy-ee10-src-deps</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<includeGroupIds>org.eclipse.jetty.ee10</includeGroupIds>
|
|
<!-- <includeArtifactIds></includeArtifactIds>-->
|
|
<includeTypes>jar</includeTypes>
|
|
<excludeGroupIds>org.eclipse.jetty.ee10.demos</excludeGroupIds>
|
|
<classifier>sources</classifier>
|
|
<outputDirectory>${source-assembly-directory}/lib</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
|
|
<execution>
|
|
<id>unpack-config-deps</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>unpack-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<includeGroupIds>
|
|
org.eclipse.jetty, org.eclipse.jetty.websocket, org.eclipse.jetty.ee9.demos, org.eclipse.jetty.ee10.demos
|
|
</includeGroupIds>
|
|
<excludeArtifactIds>infinispan-embedded,infinispan-remote,jetty-test-helper,alpn-api,javax.security.auth.message,javax.activation</excludeArtifactIds>
|
|
<classifier>config</classifier>
|
|
<failOnMissingClassifierArtifact>false</failOnMissingClassifierArtifact>
|
|
<excludes>META-INF/**,webapps/**,start.d/**,start.ini</excludes>
|
|
<outputDirectory>${assembly-directory}</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>unpack-infinispan-config</id>
|
|
<phase>generate-resources</phase>
|
|
<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>
|
|
</executions>
|
|
</plugin>
|
|
<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>
|
|
<target>
|
|
<chmod dir="${assembly-directory}/bin" perm="755" includes="**/*.sh" />
|
|
</target>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<configuration>
|
|
<tarLongFileMode>posix</tarLongFileMode>
|
|
<appendAssemblyId>false</appendAssemblyId>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>binary</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>single</goal>
|
|
</goals>
|
|
<configuration>
|
|
<overrideUid>0</overrideUid>
|
|
<overrideGid>0</overrideGid>
|
|
<descriptors>
|
|
<descriptor>src/main/assembly/jetty-assembly.xml</descriptor>
|
|
</descriptors>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>sources</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>single</goal>
|
|
</goals>
|
|
<configuration>
|
|
<descriptors>
|
|
<descriptor>src/main/assembly/jetty-source-assembly.xml</descriptor>
|
|
</descriptors>
|
|
<appendAssemblyId>true</appendAssemblyId>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>enforce-java</id>
|
|
<goals>
|
|
<goal>enforce</goal>
|
|
</goals>
|
|
<configuration>
|
|
<rules>
|
|
<requireUpperBoundDeps>
|
|
<excludes combine.children="append">
|
|
<exclude>org.eclipse.jetty.toolchain:jetty-jakarta-servlet-api</exclude>
|
|
</excludes>
|
|
</requireUpperBoundDeps>
|
|
</rules>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee9</groupId>
|
|
<artifactId>jetty-ee9-bom</artifactId>
|
|
<version>${project.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
|
<artifactId>jetty-ee10-bom</artifactId>
|
|
<version>${project.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<dependencies>
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>jakarta.mail</groupId>-->
|
|
<!-- <artifactId>jakarta.mail-api</artifactId>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>jakarta.annotation</groupId>-->
|
|
<!-- <artifactId>jakarta.annotation-api</artifactId>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>jakarta.authentication</groupId>-->
|
|
<!-- <artifactId>jakarta.authentication-api</artifactId>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>jakarta.transaction</groupId>-->
|
|
<!-- <artifactId>jakarta.transaction-api</artifactId>-->
|
|
<!-- </dependency>-->
|
|
|
|
<dependency>
|
|
<groupId>org.ow2.asm</groupId>
|
|
<artifactId>asm</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.ow2.asm</groupId>
|
|
<artifactId>asm-commons</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.ow2.asm</groupId>
|
|
<artifactId>asm-tree</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.ow2.asm</groupId>
|
|
<artifactId>asm-analysis</artifactId>
|
|
</dependency>
|
|
|
|
<!-- jetty deps -->
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-slf4j-impl</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-deploy</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-jmx</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-start</artifactId>
|
|
<classifier>shaded</classifier>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<!-- ee9 specific dependencies -->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.eclipse.jetty.ee9</groupId>-->
|
|
<!-- <artifactId>jetty-ee9-quickstart</artifactId>-->
|
|
<!-- </dependency>-->
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee9</groupId>
|
|
<artifactId>jetty-ee9-servlet</artifactId>
|
|
</dependency>
|
|
<!-- not ready yet -->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.eclipse.jetty.ee9.websocket</groupId>-->
|
|
<!-- <artifactId>jetty-ee9-websocket-servlet</artifactId>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.eclipse.jetty.ee9.websocket</groupId>-->
|
|
<!-- <artifactId>jetty-ee9-websocket-jetty-server</artifactId>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.eclipse.jetty.ee9.websocket</groupId>-->
|
|
<!-- <artifactId>jetty-ee9-websocket-jetty-client</artifactId>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.eclipse.jetty.ee9.websocket</groupId>-->
|
|
<!-- <artifactId>jetty-ee9-websocket-jakarta-server</artifactId>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.eclipse.jetty.ee9</groupId>-->
|
|
<!-- <artifactId>jetty-ee9-apache-jsp</artifactId>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.eclipse.jetty.ee9</groupId>-->
|
|
<!-- <artifactId>jetty-ee9-glassfish-jstl</artifactId>-->
|
|
<!-- <exclusions>-->
|
|
<!-- <exclusion>-->
|
|
<!-- <groupId>javax.el</groupId>-->
|
|
<!-- <artifactId>el-api</artifactId>-->
|
|
<!-- </exclusion>-->
|
|
<!-- <exclusion>-->
|
|
<!-- <groupId>jakarta.el</groupId>-->
|
|
<!-- <artifactId>jakarta.el-api</artifactId>-->
|
|
<!-- </exclusion>-->
|
|
<!-- </exclusions>-->
|
|
<!-- </dependency>-->
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee9</groupId>
|
|
<artifactId>jetty-ee9-plus</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.eclipse.jetty.ee9</groupId>-->
|
|
<!-- <artifactId>jetty-ee9-proxy</artifactId>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.eclipse.jetty.ee9</groupId>-->
|
|
<!-- <artifactId>jetty-ee9-cdi</artifactId>-->
|
|
<!-- <optional>true</optional>-->
|
|
<!-- </dependency>-->
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee9</groupId>
|
|
<artifactId>jetty-ee9-jaas</artifactId>
|
|
<version>${project.version}</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee9</groupId>
|
|
<artifactId>jetty-ee9-annotations</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.eclipse.jetty.ee9</groupId>-->
|
|
<!-- <artifactId>jetty-ee9-openid</artifactId>-->
|
|
<!-- <optional>true</optional>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.eclipse.jetty.ee9</groupId>-->
|
|
<!-- <artifactId>jetty-ee9-jaspi</artifactId>-->
|
|
<!-- <optional>true</optional>-->
|
|
<!-- </dependency>-->
|
|
<!-- ee10 specific dependencies -->
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
|
<artifactId>jetty-ee10-quickstart</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
|
<artifactId>jetty-ee10-servlet</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
|
<artifactId>jetty-ee10-servlets</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee10.websocket</groupId>
|
|
<artifactId>jetty-ee10-websocket-servlet</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee10.websocket</groupId>
|
|
<artifactId>jetty-ee10-websocket-jetty-server</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee10.websocket</groupId>
|
|
<artifactId>jetty-ee10-websocket-jetty-client</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee10.websocket</groupId>
|
|
<artifactId>jetty-ee10-websocket-jakarta-server</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
|
<artifactId>jetty-ee10-apache-jsp</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
|
<artifactId>jetty-ee10-glassfish-jstl</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>javax.el</groupId>
|
|
<artifactId>el-api</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>jakarta.el</groupId>
|
|
<artifactId>jakarta.el-api</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
|
<artifactId>jetty-ee10-plus</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
|
<artifactId>jetty-ee10-proxy</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
|
<artifactId>jetty-ee10-cdi</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
|
<artifactId>jetty-ee10-jaas</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
|
<artifactId>jetty-ee10-annotations</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
|
<artifactId>jetty-ee10-openid</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
|
<artifactId>jetty-ee10-jaspi</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-client</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-unixdomain-server</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.fcgi</groupId>
|
|
<artifactId>fcgi-server</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jboss.logging</groupId>
|
|
<artifactId>jboss-logging</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-rewrite</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.http2</groupId>
|
|
<artifactId>http2-server</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.http3</groupId>
|
|
<artifactId>http3-server</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-alpn-server</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-alpn-java-server</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-alpn-conscrypt-server</artifactId>
|
|
</dependency>
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.eclipse.jetty</groupId>-->
|
|
<!-- <artifactId>infinispan-embedded</artifactId>-->
|
|
<!-- <version>${project.version}</version>-->
|
|
<!-- <type>pom</type>-->
|
|
<!-- <optional>true</optional>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.eclipse.jetty</groupId>-->
|
|
<!-- <artifactId>infinispan-embedded-query</artifactId>-->
|
|
<!-- <optional>true</optional>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.eclipse.jetty</groupId>-->
|
|
<!-- <artifactId>infinispan-remote</artifactId>-->
|
|
<!-- <version>${project.version}</version>-->
|
|
<!-- <type>pom</type>-->
|
|
<!-- <optional>true</optional>-->
|
|
<!-- <exclusions>-->
|
|
<!-- <exclusion>-->
|
|
<!-- <groupId>org.wildfly.common</groupId>-->
|
|
<!-- <artifactId>*</artifactId>-->
|
|
<!-- </exclusion>-->
|
|
<!-- </exclusions>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.eclipse.jetty</groupId>-->
|
|
<!-- <artifactId>infinispan-remote-query</artifactId>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.eclipse.jetty</groupId>-->
|
|
<!-- <artifactId>jetty-hazelcast</artifactId>-->
|
|
<!-- <optional>true</optional>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.eclipse.jetty.gcloud</groupId>-->
|
|
<!-- <artifactId>jetty-gcloud-session-manager</artifactId>-->
|
|
<!-- <optional>true</optional>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.eclipse.jetty.memcached</groupId>-->
|
|
<!-- <artifactId>jetty-memcached-sessions</artifactId>-->
|
|
<!-- <optional>true</optional>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.eclipse.jetty</groupId>-->
|
|
<!-- <artifactId>jetty-nosql</artifactId>-->
|
|
<!-- <optional>true</optional>-->
|
|
<!-- </dependency>-->
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-keystore</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<!-- Demo EE10 Apps -->
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee10.demos</groupId>
|
|
<artifactId>demo-ee10-mock-resources</artifactId>
|
|
<version>${project.version}</version>
|
|
<classifier>config</classifier>
|
|
<type>jar</type>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee10.demos</groupId>
|
|
<artifactId>demo-ee10-jetty-webapp</artifactId>
|
|
<version>${project.version}</version>
|
|
<classifier>config</classifier>
|
|
<type>jar</type>
|
|
<optional>true</optional>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>javax.el</groupId>
|
|
<artifactId>el-api</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee10.demos</groupId>
|
|
<artifactId>demo-ee10-jaas-webapp</artifactId>
|
|
<version>${project.version}</version>
|
|
<classifier>config</classifier>
|
|
<type>jar</type>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee10.demos</groupId>
|
|
<artifactId>demo-ee10-jndi-webapp</artifactId>
|
|
<version>${project.version}</version>
|
|
<classifier>config</classifier>
|
|
<type>jar</type>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee10.demos</groupId>
|
|
<artifactId>demo-ee10-spec-webapp</artifactId>
|
|
<version>${project.version}</version>
|
|
<classifier>config</classifier>
|
|
<type>jar</type>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee10.demos</groupId>
|
|
<artifactId>demo-ee10-async-rest-webapp</artifactId>
|
|
<version>${project.version}</version>
|
|
<classifier>config</classifier>
|
|
<type>jar</type>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee10.demos</groupId>
|
|
<artifactId>demo-ee10-proxy-webapp</artifactId>
|
|
<version>${project.version}</version>
|
|
<classifier>config</classifier>
|
|
<type>jar</type>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee10.demos</groupId>
|
|
<artifactId>demo-ee10-simple-webapp</artifactId>
|
|
<version>${project.version}</version>
|
|
<classifier>config</classifier>
|
|
<type>jar</type>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee10.demos</groupId>
|
|
<artifactId>demo-ee10-jsp-webapp</artifactId>
|
|
<version>${project.version}</version>
|
|
<classifier>config</classifier>
|
|
<type>jar</type>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<!-- Demo EE9 Apps -->
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee9.demos</groupId>
|
|
<artifactId>demo-ee9-mock-resources</artifactId>
|
|
<version>${project.version}</version>
|
|
<classifier>config</classifier>
|
|
<type>jar</type>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<!-- dependency>
|
|
<groupId>org.eclipse.jetty.ee9.demos</groupId>
|
|
<artifactId>demo-ee9-jetty-webapp</artifactId>
|
|
<version>${project.version}</version>
|
|
<classifier>config</classifier>
|
|
<type>jar</type>
|
|
<optional>true</optional>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>javax.el</groupId>
|
|
<artifactId>el-api</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency -->
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee9.demos</groupId>
|
|
<artifactId>demo-ee9-jaas-webapp</artifactId>
|
|
<version>${project.version}</version>
|
|
<classifier>config</classifier>
|
|
<type>jar</type>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee9.demos</groupId>
|
|
<artifactId>demo-ee9-jndi-webapp</artifactId>
|
|
<version>${project.version}</version>
|
|
<classifier>config</classifier>
|
|
<type>jar</type>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee9.demos</groupId>
|
|
<artifactId>demo-ee9-spec-webapp</artifactId>
|
|
<version>${project.version}</version>
|
|
<classifier>config</classifier>
|
|
<type>jar</type>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee9.demos</groupId>
|
|
<artifactId>demo-ee9-async-rest-webapp</artifactId>
|
|
<version>${project.version}</version>
|
|
<classifier>config</classifier>
|
|
<type>jar</type>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<!-- dependency>
|
|
<groupId>org.eclipse.jetty.ee9.demos</groupId>
|
|
<artifactId>demo-ee9-proxy-webapp</artifactId>
|
|
<version>${project.version}</version>
|
|
<classifier>config</classifier>
|
|
<type>jar</type>
|
|
<optional>true</optional>
|
|
</dependency -->
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee9.demos</groupId>
|
|
<artifactId>demo-ee9-simple-webapp</artifactId>
|
|
<version>${project.version}</version>
|
|
<classifier>config</classifier>
|
|
<type>jar</type>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee9.demos</groupId>
|
|
<artifactId>demo-ee9-jsp-webapp</artifactId>
|
|
<version>${project.version}</version>
|
|
<classifier>config</classifier>
|
|
<type>jar</type>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|