Introduced EE11 and jetty-12.1.x
This commit is contained in:
parent
151fffb48e
commit
b11996a3c4
|
@ -11,7 +11,7 @@ labels: Bug
|
||||||
<!--[Jetty 9.x is now at End of Community Support](https://github.com/eclipse/jetty.project/issues/7958) -->
|
<!--[Jetty 9.x is now at End of Community Support](https://github.com/eclipse/jetty.project/issues/7958) -->
|
||||||
|
|
||||||
**Jetty Environment**
|
**Jetty Environment**
|
||||||
<!-- Applicable for jetty-12 only, choose: core, ee8, ee9, ee10 -->
|
<!-- Applicable for jetty-12 only, choose: core, ee8, ee9, ee10, ee11 -->
|
||||||
|
|
||||||
**Java version/vendor** `(use: java -version)`
|
**Java version/vendor** `(use: java -version)`
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ assignees: ''
|
||||||
**Jetty Version**
|
**Jetty Version**
|
||||||
|
|
||||||
**Jetty Environment**
|
**Jetty Environment**
|
||||||
<!-- Applicable only for jetty-12, choose: core, ee8, ee9, ee10 -->
|
<!-- Applicable only for jetty-12, choose: core, ee8, ee9, ee10, ee11 -->
|
||||||
|
|
||||||
**Java Version**
|
**Java Version**
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ Jetty is a modern fully asynchronous web server that has a long history as a com
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
$ mkdir jetty-base && cd jetty-base
|
$ mkdir jetty-base && cd jetty-base
|
||||||
$ java -jar $JETTY_HOME/start.jar --add-modules=http,ee10-deploy
|
$ java -jar $JETTY_HOME/start.jar --add-modules=http,ee11-deploy
|
||||||
$ cp ~/src/myproj/target/mywebapp.war webapps
|
$ cp ~/src/myproj/target/mywebapp.war webapps
|
||||||
$ java -jar $JETTY_HOME/start.jar
|
$ java -jar $JETTY_HOME/start.jar
|
||||||
```
|
```
|
||||||
|
@ -20,7 +20,7 @@ $ java -jar $JETTY_HOME/start.jar
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
$ mkdir jetty-base && cd jetty-base
|
$ mkdir jetty-base && cd jetty-base
|
||||||
$ java -jar $JETTY_HOME/start.jar --add-modules=http,ee10-deploy,ee8-deploy
|
$ java -jar $JETTY_HOME/start.jar --add-modules=http,ee11-deploy,ee8-deploy
|
||||||
$ cp ~/src/myproj/target/mywebapp10.war webapps
|
$ cp ~/src/myproj/target/mywebapp10.war webapps
|
||||||
$ cp ~/src/myproj/target/mywebapp8.war webapps
|
$ cp ~/src/myproj/target/mywebapp8.war webapps
|
||||||
$ echo "environment: ee8" > webapps/mywebapp8.properties
|
$ echo "environment: ee8" > webapps/mywebapp8.properties
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-project</artifactId>
|
<artifactId>jetty-project</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.jetty.build</groupId>
|
<groupId>org.eclipse.jetty.build</groupId>
|
||||||
<artifactId>build</artifactId>
|
<artifactId>build</artifactId>
|
||||||
|
|
|
@ -24,6 +24,11 @@ mvn -B -Pdependency-updates-reports validate -Dmaven.build.cache.enabled=false
|
||||||
cp target/site/dependency-updates-aggregate-report.html $REPORT_OUTPUT_DIR/dependency-updates-report-core.html
|
cp target/site/dependency-updates-aggregate-report.html $REPORT_OUTPUT_DIR/dependency-updates-report-core.html
|
||||||
popd
|
popd
|
||||||
|
|
||||||
|
pushd jetty-ee11
|
||||||
|
mvn -B -Pdependency-updates-reports validate -Dmaven.build.cache.enabled=false
|
||||||
|
cp target/site/dependency-updates-aggregate-report.html $REPORT_OUTPUT_DIR/dependency-updates-report-ee11.html
|
||||||
|
popd
|
||||||
|
|
||||||
pushd jetty-ee10
|
pushd jetty-ee10
|
||||||
mvn -B -Pdependency-updates-reports validate -Dmaven.build.cache.enabled=false
|
mvn -B -Pdependency-updates-reports validate -Dmaven.build.cache.enabled=false
|
||||||
cp target/site/dependency-updates-aggregate-report.html $REPORT_OUTPUT_DIR/dependency-updates-report-ee10.html
|
cp target/site/dependency-updates-aggregate-report.html $REPORT_OUTPUT_DIR/dependency-updates-report-ee10.html
|
||||||
|
|
|
@ -11,6 +11,10 @@ pushd jetty-core
|
||||||
mvn -N -B -Pupdate-dependencies-core validate -Dmaven.build.cache.enabled=false
|
mvn -N -B -Pupdate-dependencies-core validate -Dmaven.build.cache.enabled=false
|
||||||
popd
|
popd
|
||||||
|
|
||||||
|
pushd jetty-ee11
|
||||||
|
mvn -N -B -Pupdate-dependencies-ee11 validate -Dmaven.build.cache.enabled=false
|
||||||
|
popd
|
||||||
|
|
||||||
pushd jetty-ee10
|
pushd jetty-ee10
|
||||||
mvn -N -B -Pupdate-dependencies-ee10 validate -Dmaven.build.cache.enabled=false
|
mvn -N -B -Pupdate-dependencies-ee10 validate -Dmaven.build.cache.enabled=false
|
||||||
popd
|
popd
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.documentation</groupId>
|
<groupId>org.eclipse.jetty.documentation</groupId>
|
||||||
<artifactId>documentation</artifactId>
|
<artifactId>documentation</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-asciidoctor-extensions</artifactId>
|
<artifactId>jetty-asciidoctor-extensions</artifactId>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.documentation</groupId>
|
<groupId>org.eclipse.jetty.documentation</groupId>
|
||||||
<artifactId>documentation</artifactId>
|
<artifactId>documentation</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-documentation</artifactId>
|
<artifactId>jetty-documentation</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-project</artifactId>
|
<artifactId>jetty-project</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.jetty.documentation</groupId>
|
<groupId>org.eclipse.jetty.documentation</groupId>
|
||||||
<artifactId>documentation</artifactId>
|
<artifactId>documentation</artifactId>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-project</artifactId>
|
<artifactId>jetty-project</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>javadoc</artifactId>
|
<artifactId>javadoc</artifactId>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
@ -24,8 +24,8 @@
|
||||||
<dependencyManagement>
|
<dependencyManagement>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee11</groupId>
|
||||||
<artifactId>jetty-ee10-bom</artifactId>
|
<artifactId>jetty-ee11-bom</artifactId>
|
||||||
<version>${project.version}</version>
|
<version>${project.version}</version>
|
||||||
<type>pom</type>
|
<type>pom</type>
|
||||||
<scope>import</scope>
|
<scope>import</scope>
|
||||||
|
@ -163,110 +163,110 @@
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- Jetty EE 10 Dependencies -->
|
<!-- Jetty EE 11 Dependencies -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee11</groupId>
|
||||||
<artifactId>jetty-ee10-annotations</artifactId>
|
<artifactId>jetty-ee11-annotations</artifactId>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee11</groupId>
|
||||||
<artifactId>jetty-ee10-apache-jsp</artifactId>
|
<artifactId>jetty-ee11-apache-jsp</artifactId>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee11</groupId>
|
||||||
<artifactId>jetty-ee10-cdi</artifactId>
|
<artifactId>jetty-ee11-cdi</artifactId>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee11</groupId>
|
||||||
<artifactId>jetty-ee10-fcgi-proxy</artifactId>
|
<artifactId>jetty-ee11-fcgi-proxy</artifactId>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee11</groupId>
|
||||||
<artifactId>jetty-ee10-glassfish-jstl</artifactId>
|
<artifactId>jetty-ee11-glassfish-jstl</artifactId>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee11</groupId>
|
||||||
<artifactId>jetty-ee10-jaspi</artifactId>
|
<artifactId>jetty-ee11-jaspi</artifactId>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee11</groupId>
|
||||||
<artifactId>jetty-ee10-jndi</artifactId>
|
<artifactId>jetty-ee11-jndi</artifactId>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee11</groupId>
|
||||||
<artifactId>jetty-ee10-plus</artifactId>
|
<artifactId>jetty-ee11-plus</artifactId>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee11</groupId>
|
||||||
<artifactId>jetty-ee10-proxy</artifactId>
|
<artifactId>jetty-ee11-proxy</artifactId>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee11</groupId>
|
||||||
<artifactId>jetty-ee10-quickstart</artifactId>
|
<artifactId>jetty-ee11-quickstart</artifactId>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee11</groupId>
|
||||||
<artifactId>jetty-ee10-runner</artifactId>
|
<artifactId>jetty-ee11-runner</artifactId>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee11</groupId>
|
||||||
<artifactId>jetty-ee10-servlet</artifactId>
|
<artifactId>jetty-ee11-servlet</artifactId>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee11</groupId>
|
||||||
<artifactId>jetty-ee10-servlets</artifactId>
|
<artifactId>jetty-ee11-servlets</artifactId>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee11</groupId>
|
||||||
<artifactId>jetty-ee10-webapp</artifactId>
|
<artifactId>jetty-ee11-webapp</artifactId>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10.osgi</groupId>
|
<groupId>org.eclipse.jetty.ee11.osgi</groupId>
|
||||||
<artifactId>jetty-ee10-osgi-alpn</artifactId>
|
<artifactId>jetty-ee11-osgi-alpn</artifactId>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10.osgi</groupId>
|
<groupId>org.eclipse.jetty.ee11.osgi</groupId>
|
||||||
<artifactId>jetty-ee10-osgi-boot</artifactId>
|
<artifactId>jetty-ee11-osgi-boot</artifactId>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10.osgi</groupId>
|
<groupId>org.eclipse.jetty.ee11.osgi</groupId>
|
||||||
<artifactId>jetty-ee10-osgi-boot-jsp</artifactId>
|
<artifactId>jetty-ee11-osgi-boot-jsp</artifactId>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10.websocket</groupId>
|
<groupId>org.eclipse.jetty.ee11.websocket</groupId>
|
||||||
<artifactId>jetty-ee10-websocket-jakarta-client</artifactId>
|
<artifactId>jetty-ee11-websocket-jakarta-client</artifactId>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10.websocket</groupId>
|
<groupId>org.eclipse.jetty.ee11.websocket</groupId>
|
||||||
<artifactId>jetty-ee10-websocket-jakarta-server</artifactId>
|
<artifactId>jetty-ee11-websocket-jakarta-server</artifactId>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10.websocket</groupId>
|
<groupId>org.eclipse.jetty.ee11.websocket</groupId>
|
||||||
<artifactId>jetty-ee10-websocket-jetty-server</artifactId>
|
<artifactId>jetty-ee11-websocket-jetty-server</artifactId>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10.websocket</groupId>
|
<groupId>org.eclipse.jetty.ee11.websocket</groupId>
|
||||||
<artifactId>jetty-ee10-websocket-servlet</artifactId>
|
<artifactId>jetty-ee11-websocket-servlet</artifactId>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-alpn</artifactId>
|
<artifactId>jetty-alpn</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-alpn-client</artifactId>
|
<artifactId>jetty-alpn-client</artifactId>
|
||||||
<name>Core :: ALPN :: Client</name>
|
<name>Core :: ALPN :: Client</name>
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-alpn</artifactId>
|
<artifactId>jetty-alpn</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-alpn-conscrypt-client</artifactId>
|
<artifactId>jetty-alpn-conscrypt-client</artifactId>
|
||||||
<name>Core :: ALPN :: Conscrypt Client</name>
|
<name>Core :: ALPN :: Conscrypt Client</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-alpn</artifactId>
|
<artifactId>jetty-alpn</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-alpn-conscrypt-server</artifactId>
|
<artifactId>jetty-alpn-conscrypt-server</artifactId>
|
||||||
<name>Core :: ALPN :: Conscrypt Server</name>
|
<name>Core :: ALPN :: Conscrypt Server</name>
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-alpn</artifactId>
|
<artifactId>jetty-alpn</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-alpn-java-client</artifactId>
|
<artifactId>jetty-alpn-java-client</artifactId>
|
||||||
<name>Core :: ALPN :: Java Client</name>
|
<name>Core :: ALPN :: Java Client</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-alpn</artifactId>
|
<artifactId>jetty-alpn</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-alpn-java-server</artifactId>
|
<artifactId>jetty-alpn-java-server</artifactId>
|
||||||
<name>Core :: ALPN :: Java Server</name>
|
<name>Core :: ALPN :: Java Server</name>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-alpn</artifactId>
|
<artifactId>jetty-alpn</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-alpn-server</artifactId>
|
<artifactId>jetty-alpn-server</artifactId>
|
||||||
<name>Core :: ALPN :: Server</name>
|
<name>Core :: ALPN :: Server</name>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-alpn</artifactId>
|
<artifactId>jetty-alpn</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>jetty-bom</artifactId>
|
<artifactId>jetty-bom</artifactId>
|
||||||
|
@ -18,282 +18,282 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-alpn-client</artifactId>
|
<artifactId>jetty-alpn-client</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-alpn-conscrypt-client</artifactId>
|
<artifactId>jetty-alpn-conscrypt-client</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-alpn-conscrypt-server</artifactId>
|
<artifactId>jetty-alpn-conscrypt-server</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-alpn-java-client</artifactId>
|
<artifactId>jetty-alpn-java-client</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-alpn-java-server</artifactId>
|
<artifactId>jetty-alpn-java-server</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-alpn-server</artifactId>
|
<artifactId>jetty-alpn-server</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-client</artifactId>
|
<artifactId>jetty-client</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-deploy</artifactId>
|
<artifactId>jetty-deploy</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-http</artifactId>
|
<artifactId>jetty-http</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-http-spi</artifactId>
|
<artifactId>jetty-http-spi</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-http-tools</artifactId>
|
<artifactId>jetty-http-tools</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-io</artifactId>
|
<artifactId>jetty-io</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-jmx</artifactId>
|
<artifactId>jetty-jmx</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-jndi</artifactId>
|
<artifactId>jetty-jndi</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-keystore</artifactId>
|
<artifactId>jetty-keystore</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-openid</artifactId>
|
<artifactId>jetty-openid</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-osgi</artifactId>
|
<artifactId>jetty-osgi</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-plus</artifactId>
|
<artifactId>jetty-plus</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-proxy</artifactId>
|
<artifactId>jetty-proxy</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-rewrite</artifactId>
|
<artifactId>jetty-rewrite</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-security</artifactId>
|
<artifactId>jetty-security</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-server</artifactId>
|
<artifactId>jetty-server</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-session</artifactId>
|
<artifactId>jetty-session</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-slf4j-impl</artifactId>
|
<artifactId>jetty-slf4j-impl</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-start</artifactId>
|
<artifactId>jetty-start</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-unixdomain-server</artifactId>
|
<artifactId>jetty-unixdomain-server</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-util</artifactId>
|
<artifactId>jetty-util</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-util-ajax</artifactId>
|
<artifactId>jetty-util-ajax</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-xml</artifactId>
|
<artifactId>jetty-xml</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.demos</groupId>
|
<groupId>org.eclipse.jetty.demos</groupId>
|
||||||
<artifactId>jetty-demo-handler</artifactId>
|
<artifactId>jetty-demo-handler</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.fcgi</groupId>
|
<groupId>org.eclipse.jetty.fcgi</groupId>
|
||||||
<artifactId>jetty-fcgi-client</artifactId>
|
<artifactId>jetty-fcgi-client</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.fcgi</groupId>
|
<groupId>org.eclipse.jetty.fcgi</groupId>
|
||||||
<artifactId>jetty-fcgi-proxy</artifactId>
|
<artifactId>jetty-fcgi-proxy</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.fcgi</groupId>
|
<groupId>org.eclipse.jetty.fcgi</groupId>
|
||||||
<artifactId>jetty-fcgi-server</artifactId>
|
<artifactId>jetty-fcgi-server</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.http2</groupId>
|
<groupId>org.eclipse.jetty.http2</groupId>
|
||||||
<artifactId>jetty-http2-client</artifactId>
|
<artifactId>jetty-http2-client</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.http2</groupId>
|
<groupId>org.eclipse.jetty.http2</groupId>
|
||||||
<artifactId>jetty-http2-client-transport</artifactId>
|
<artifactId>jetty-http2-client-transport</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.http2</groupId>
|
<groupId>org.eclipse.jetty.http2</groupId>
|
||||||
<artifactId>jetty-http2-common</artifactId>
|
<artifactId>jetty-http2-common</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.http2</groupId>
|
<groupId>org.eclipse.jetty.http2</groupId>
|
||||||
<artifactId>jetty-http2-hpack</artifactId>
|
<artifactId>jetty-http2-hpack</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.http2</groupId>
|
<groupId>org.eclipse.jetty.http2</groupId>
|
||||||
<artifactId>jetty-http2-server</artifactId>
|
<artifactId>jetty-http2-server</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.http3</groupId>
|
<groupId>org.eclipse.jetty.http3</groupId>
|
||||||
<artifactId>jetty-http3-client</artifactId>
|
<artifactId>jetty-http3-client</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.http3</groupId>
|
<groupId>org.eclipse.jetty.http3</groupId>
|
||||||
<artifactId>jetty-http3-client-transport</artifactId>
|
<artifactId>jetty-http3-client-transport</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.http3</groupId>
|
<groupId>org.eclipse.jetty.http3</groupId>
|
||||||
<artifactId>jetty-http3-common</artifactId>
|
<artifactId>jetty-http3-common</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.http3</groupId>
|
<groupId>org.eclipse.jetty.http3</groupId>
|
||||||
<artifactId>jetty-http3-qpack</artifactId>
|
<artifactId>jetty-http3-qpack</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.http3</groupId>
|
<groupId>org.eclipse.jetty.http3</groupId>
|
||||||
<artifactId>jetty-http3-server</artifactId>
|
<artifactId>jetty-http3-server</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.quic</groupId>
|
<groupId>org.eclipse.jetty.quic</groupId>
|
||||||
<artifactId>jetty-quic-client</artifactId>
|
<artifactId>jetty-quic-client</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.quic</groupId>
|
<groupId>org.eclipse.jetty.quic</groupId>
|
||||||
<artifactId>jetty-quic-common</artifactId>
|
<artifactId>jetty-quic-common</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.quic</groupId>
|
<groupId>org.eclipse.jetty.quic</groupId>
|
||||||
<artifactId>jetty-quic-quiche-common</artifactId>
|
<artifactId>jetty-quic-quiche-common</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.quic</groupId>
|
<groupId>org.eclipse.jetty.quic</groupId>
|
||||||
<artifactId>jetty-quic-quiche-foreign</artifactId>
|
<artifactId>jetty-quic-quiche-foreign</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.quic</groupId>
|
<groupId>org.eclipse.jetty.quic</groupId>
|
||||||
<artifactId>jetty-quic-quiche-jna</artifactId>
|
<artifactId>jetty-quic-quiche-jna</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.quic</groupId>
|
<groupId>org.eclipse.jetty.quic</groupId>
|
||||||
<artifactId>jetty-quic-server</artifactId>
|
<artifactId>jetty-quic-server</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.websocket</groupId>
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
||||||
<artifactId>jetty-websocket-core-client</artifactId>
|
<artifactId>jetty-websocket-core-client</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.websocket</groupId>
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
||||||
<artifactId>jetty-websocket-core-common</artifactId>
|
<artifactId>jetty-websocket-core-common</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.websocket</groupId>
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
||||||
<artifactId>jetty-websocket-core-server</artifactId>
|
<artifactId>jetty-websocket-core-server</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.websocket</groupId>
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
||||||
<artifactId>jetty-websocket-jetty-api</artifactId>
|
<artifactId>jetty-websocket-jetty-api</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.websocket</groupId>
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
||||||
<artifactId>jetty-websocket-jetty-client</artifactId>
|
<artifactId>jetty-websocket-jetty-client</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.websocket</groupId>
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
||||||
<artifactId>jetty-websocket-jetty-common</artifactId>
|
<artifactId>jetty-websocket-jetty-common</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.websocket</groupId>
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
||||||
<artifactId>jetty-websocket-jetty-server</artifactId>
|
<artifactId>jetty-websocket-jetty-server</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</dependencyManagement>
|
</dependencyManagement>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-client</artifactId>
|
<artifactId>jetty-client</artifactId>
|
||||||
<name>Core :: HTTP Client</name>
|
<name>Core :: HTTP Client</name>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.demos</groupId>
|
<groupId>org.eclipse.jetty.demos</groupId>
|
||||||
<artifactId>jetty-demos</artifactId>
|
<artifactId>jetty-demos</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-demo-handler</artifactId>
|
<artifactId>jetty-demo-handler</artifactId>
|
||||||
<name>Core :: Demo Handler</name>
|
<name>Core :: Demo Handler</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.jetty.demos</groupId>
|
<groupId>org.eclipse.jetty.demos</groupId>
|
||||||
<artifactId>jetty-demos</artifactId>
|
<artifactId>jetty-demos</artifactId>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-deploy</artifactId>
|
<artifactId>jetty-deploy</artifactId>
|
||||||
<name>Core :: Deployers</name>
|
<name>Core :: Deployers</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<Ref refid="DeploymentManager">
|
<Ref refid="DeploymentManager">
|
||||||
<Call name="addLifeCycleBinding">
|
<Call name="addLifeCycleBinding">
|
||||||
<Arg>
|
<Arg>
|
||||||
<New class="org.eclipse.jetty.ee10.deployer.GlobalWebappConfigBinding">
|
<New class="org.eclipse.jetty.ee11.deployer.GlobalWebappConfigBinding">
|
||||||
<Set name="jettyXml"><Property name="jetty.home" default="." />/etc/jetty-web-decorate.xml
|
<Set name="jettyXml"><Property name="jetty.home" default="." />/etc/jetty-web-decorate.xml
|
||||||
</Set>
|
</Set>
|
||||||
</New>
|
</New>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<Ref refid="DeploymentManager">
|
<Ref refid="DeploymentManager">
|
||||||
<Call name="addLifeCycleBinding">
|
<Call name="addLifeCycleBinding">
|
||||||
<Arg>
|
<Arg>
|
||||||
<New class="org.eclipse.jetty.ee10.deployer.GlobalWebappConfigBinding">
|
<New class="org.eclipse.jetty.ee11.deployer.GlobalWebappConfigBinding">
|
||||||
<Set name="jettyXml">
|
<Set name="jettyXml">
|
||||||
<Call name="resolvePath" class="org.eclipse.jetty.xml.XmlConfiguration">
|
<Call name="resolvePath" class="org.eclipse.jetty.xml.XmlConfiguration">
|
||||||
<Arg><Property name="jetty.base"/></Arg>
|
<Arg><Property name="jetty.base"/></Arg>
|
||||||
|
|
|
@ -113,13 +113,13 @@ public class DeploymentManagerTest
|
||||||
});
|
});
|
||||||
assertThat(depman.getDefaultEnvironmentName(), is("ee12"));
|
assertThat(depman.getDefaultEnvironmentName(), is("ee12"));
|
||||||
|
|
||||||
Environment.ensure("ee10");
|
Environment.ensure("ee11");
|
||||||
depman.addAppProvider(new MockAppProvider()
|
depman.addAppProvider(new MockAppProvider()
|
||||||
{
|
{
|
||||||
@Override
|
@Override
|
||||||
public String getEnvironmentName()
|
public String getEnvironmentName()
|
||||||
{
|
{
|
||||||
return "ee10";
|
return "ee11";
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
assertThat(depman.getDefaultEnvironmentName(), is("ee12"));
|
assertThat(depman.getDefaultEnvironmentName(), is("ee12"));
|
||||||
|
@ -150,7 +150,7 @@ public class DeploymentManagerTest
|
||||||
"other",
|
"other",
|
||||||
"somethingElse",
|
"somethingElse",
|
||||||
"ee7",
|
"ee7",
|
||||||
"ee10",
|
"ee11",
|
||||||
"ee12"
|
"ee12"
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-ee</artifactId>
|
<artifactId>jetty-ee</artifactId>
|
||||||
<name>Core :: EE Common</name>
|
<name>Core :: EE Common</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.fcgi</groupId>
|
<groupId>org.eclipse.jetty.fcgi</groupId>
|
||||||
<artifactId>jetty-fcgi</artifactId>
|
<artifactId>jetty-fcgi</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-fcgi-client</artifactId>
|
<artifactId>jetty-fcgi-client</artifactId>
|
||||||
<name>Core :: FastCGI :: Client</name>
|
<name>Core :: FastCGI :: Client</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.fcgi</groupId>
|
<groupId>org.eclipse.jetty.fcgi</groupId>
|
||||||
<artifactId>jetty-fcgi</artifactId>
|
<artifactId>jetty-fcgi</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-fcgi-proxy</artifactId>
|
<artifactId>jetty-fcgi-proxy</artifactId>
|
||||||
<name>Core :: FastCGI :: Proxy</name>
|
<name>Core :: FastCGI :: Proxy</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.fcgi</groupId>
|
<groupId>org.eclipse.jetty.fcgi</groupId>
|
||||||
<artifactId>jetty-fcgi</artifactId>
|
<artifactId>jetty-fcgi</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-fcgi-server</artifactId>
|
<artifactId>jetty-fcgi-server</artifactId>
|
||||||
<name>Core :: FastCGI :: Server</name>
|
<name>Core :: FastCGI :: Server</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.jetty.fcgi</groupId>
|
<groupId>org.eclipse.jetty.fcgi</groupId>
|
||||||
<artifactId>jetty-fcgi</artifactId>
|
<artifactId>jetty-fcgi</artifactId>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-http-spi</artifactId>
|
<artifactId>jetty-http-spi</artifactId>
|
||||||
<name>Core :: HTTP SPI</name>
|
<name>Core :: HTTP SPI</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-http-tools</artifactId>
|
<artifactId>jetty-http-tools</artifactId>
|
||||||
<name>Core :: HTTP Tools</name>
|
<name>Core :: HTTP Tools</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-http</artifactId>
|
<artifactId>jetty-http</artifactId>
|
||||||
<name>Core :: HTTP</name>
|
<name>Core :: HTTP</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.http2</groupId>
|
<groupId>org.eclipse.jetty.http2</groupId>
|
||||||
<artifactId>jetty-http2</artifactId>
|
<artifactId>jetty-http2</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-http2-client-transport</artifactId>
|
<artifactId>jetty-http2-client-transport</artifactId>
|
||||||
<name>Core :: HTTP2 :: Client Transport</name>
|
<name>Core :: HTTP2 :: Client Transport</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.http2</groupId>
|
<groupId>org.eclipse.jetty.http2</groupId>
|
||||||
<artifactId>jetty-http2</artifactId>
|
<artifactId>jetty-http2</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-http2-client</artifactId>
|
<artifactId>jetty-http2-client</artifactId>
|
||||||
<name>Core :: HTTP2 :: Client</name>
|
<name>Core :: HTTP2 :: Client</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.http2</groupId>
|
<groupId>org.eclipse.jetty.http2</groupId>
|
||||||
<artifactId>jetty-http2</artifactId>
|
<artifactId>jetty-http2</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-http2-common</artifactId>
|
<artifactId>jetty-http2-common</artifactId>
|
||||||
<name>Core :: HTTP2 :: Common</name>
|
<name>Core :: HTTP2 :: Common</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.http2</groupId>
|
<groupId>org.eclipse.jetty.http2</groupId>
|
||||||
<artifactId>jetty-http2</artifactId>
|
<artifactId>jetty-http2</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-http2-hpack</artifactId>
|
<artifactId>jetty-http2-hpack</artifactId>
|
||||||
<name>Core :: HTTP2 :: HPACK</name>
|
<name>Core :: HTTP2 :: HPACK</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.http2</groupId>
|
<groupId>org.eclipse.jetty.http2</groupId>
|
||||||
<artifactId>jetty-http2</artifactId>
|
<artifactId>jetty-http2</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-http2-server</artifactId>
|
<artifactId>jetty-http2-server</artifactId>
|
||||||
<name>Core :: HTTP2 :: Server</name>
|
<name>Core :: HTTP2 :: Server</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.http2</groupId>
|
<groupId>org.eclipse.jetty.http2</groupId>
|
||||||
<artifactId>jetty-http2</artifactId>
|
<artifactId>jetty-http2</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-http2-tests</artifactId>
|
<artifactId>jetty-http2-tests</artifactId>
|
||||||
<name>Core :: HTTP2 :: Tests</name>
|
<name>Core :: HTTP2 :: Tests</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.jetty.http2</groupId>
|
<groupId>org.eclipse.jetty.http2</groupId>
|
||||||
<artifactId>jetty-http2</artifactId>
|
<artifactId>jetty-http2</artifactId>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.http3</groupId>
|
<groupId>org.eclipse.jetty.http3</groupId>
|
||||||
<artifactId>jetty-http3</artifactId>
|
<artifactId>jetty-http3</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-http3-client-transport</artifactId>
|
<artifactId>jetty-http3-client-transport</artifactId>
|
||||||
<name>Core :: HTTP3 :: HTTP Client Transport</name>
|
<name>Core :: HTTP3 :: HTTP Client Transport</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.http3</groupId>
|
<groupId>org.eclipse.jetty.http3</groupId>
|
||||||
<artifactId>jetty-http3</artifactId>
|
<artifactId>jetty-http3</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-http3-client</artifactId>
|
<artifactId>jetty-http3-client</artifactId>
|
||||||
<name>Core :: HTTP3 :: Client</name>
|
<name>Core :: HTTP3 :: Client</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.http3</groupId>
|
<groupId>org.eclipse.jetty.http3</groupId>
|
||||||
<artifactId>jetty-http3</artifactId>
|
<artifactId>jetty-http3</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-http3-common</artifactId>
|
<artifactId>jetty-http3-common</artifactId>
|
||||||
<name>Core :: HTTP3 :: Common</name>
|
<name>Core :: HTTP3 :: Common</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.http3</groupId>
|
<groupId>org.eclipse.jetty.http3</groupId>
|
||||||
<artifactId>jetty-http3</artifactId>
|
<artifactId>jetty-http3</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-http3-qpack</artifactId>
|
<artifactId>jetty-http3-qpack</artifactId>
|
||||||
<name>Core :: HTTP3 :: QPACK</name>
|
<name>Core :: HTTP3 :: QPACK</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.http3</groupId>
|
<groupId>org.eclipse.jetty.http3</groupId>
|
||||||
<artifactId>jetty-http3</artifactId>
|
<artifactId>jetty-http3</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-http3-server</artifactId>
|
<artifactId>jetty-http3-server</artifactId>
|
||||||
<name>Core :: HTTP3 :: Server</name>
|
<name>Core :: HTTP3 :: Server</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.http3</groupId>
|
<groupId>org.eclipse.jetty.http3</groupId>
|
||||||
<artifactId>jetty-http3</artifactId>
|
<artifactId>jetty-http3</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-http3-tests</artifactId>
|
<artifactId>jetty-http3-tests</artifactId>
|
||||||
<name>Core :: HTTP3 :: Tests</name>
|
<name>Core :: HTTP3 :: Tests</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.jetty.http3</groupId>
|
<groupId>org.eclipse.jetty.http3</groupId>
|
||||||
<artifactId>jetty-http3</artifactId>
|
<artifactId>jetty-http3</artifactId>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-io</artifactId>
|
<artifactId>jetty-io</artifactId>
|
||||||
<name>Core :: IO</name>
|
<name>Core :: IO</name>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-jmx</artifactId>
|
<artifactId>jetty-jmx</artifactId>
|
||||||
<name>Core :: JMX</name>
|
<name>Core :: JMX</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-jndi</artifactId>
|
<artifactId>jetty-jndi</artifactId>
|
||||||
<name>Core :: JNDI</name>
|
<name>Core :: JNDI</name>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-keystore</artifactId>
|
<artifactId>jetty-keystore</artifactId>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-maven</artifactId>
|
<artifactId>jetty-maven</artifactId>
|
||||||
<name>Core :: Maven</name>
|
<name>Core :: Maven</name>
|
||||||
|
|
|
@ -5,10 +5,10 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-openid</artifactId>
|
<artifactId>jetty-openid</artifactId>
|
||||||
<name>EE10 :: OpenID</name>
|
<name>EE11 :: OpenID</name>
|
||||||
<description>Jetty OpenID Connect Infrastructure</description>
|
<description>Jetty OpenID Connect Infrastructure</description>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-osgi</artifactId>
|
<artifactId>jetty-osgi</artifactId>
|
||||||
<name>Core :: OSGi</name>
|
<name>Core :: OSGi</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-plus</artifactId>
|
<artifactId>jetty-plus</artifactId>
|
||||||
<name>Core :: Plus</name>
|
<name>Core :: Plus</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-proxy</artifactId>
|
<artifactId>jetty-proxy</artifactId>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.quic</groupId>
|
<groupId>org.eclipse.jetty.quic</groupId>
|
||||||
<artifactId>jetty-quic</artifactId>
|
<artifactId>jetty-quic</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-quic-client</artifactId>
|
<artifactId>jetty-quic-client</artifactId>
|
||||||
<name>Core :: QUIC :: Client</name>
|
<name>Core :: QUIC :: Client</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.quic</groupId>
|
<groupId>org.eclipse.jetty.quic</groupId>
|
||||||
<artifactId>jetty-quic</artifactId>
|
<artifactId>jetty-quic</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-quic-common</artifactId>
|
<artifactId>jetty-quic-common</artifactId>
|
||||||
<name>Core :: QUIC :: Common</name>
|
<name>Core :: QUIC :: Common</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.quic</groupId>
|
<groupId>org.eclipse.jetty.quic</groupId>
|
||||||
<artifactId>jetty-quic-quiche</artifactId>
|
<artifactId>jetty-quic-quiche</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-quic-quiche-common</artifactId>
|
<artifactId>jetty-quic-quiche-common</artifactId>
|
||||||
<name>Core :: QUIC :: Quiche :: Common</name>
|
<name>Core :: QUIC :: Quiche :: Common</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.quic</groupId>
|
<groupId>org.eclipse.jetty.quic</groupId>
|
||||||
<artifactId>jetty-quic-quiche</artifactId>
|
<artifactId>jetty-quic-quiche</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-quic-quiche-foreign</artifactId>
|
<artifactId>jetty-quic-quiche-foreign</artifactId>
|
||||||
<name>Core :: QUIC :: Quiche :: Foreign</name>
|
<name>Core :: QUIC :: Quiche :: Foreign</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.quic</groupId>
|
<groupId>org.eclipse.jetty.quic</groupId>
|
||||||
<artifactId>jetty-quic-quiche</artifactId>
|
<artifactId>jetty-quic-quiche</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-quic-quiche-jna</artifactId>
|
<artifactId>jetty-quic-quiche-jna</artifactId>
|
||||||
<name>Core :: QUIC :: Quiche :: JNA Binding</name>
|
<name>Core :: QUIC :: Quiche :: JNA Binding</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.quic</groupId>
|
<groupId>org.eclipse.jetty.quic</groupId>
|
||||||
<artifactId>jetty-quic</artifactId>
|
<artifactId>jetty-quic</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-quic-quiche</artifactId>
|
<artifactId>jetty-quic-quiche</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.quic</groupId>
|
<groupId>org.eclipse.jetty.quic</groupId>
|
||||||
<artifactId>jetty-quic</artifactId>
|
<artifactId>jetty-quic</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-quic-server</artifactId>
|
<artifactId>jetty-quic-server</artifactId>
|
||||||
<name>Core :: QUIC :: Server</name>
|
<name>Core :: QUIC :: Server</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.jetty.quic</groupId>
|
<groupId>org.eclipse.jetty.quic</groupId>
|
||||||
<artifactId>jetty-quic</artifactId>
|
<artifactId>jetty-quic</artifactId>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-rewrite</artifactId>
|
<artifactId>jetty-rewrite</artifactId>
|
||||||
<name>Core :: Rewrite</name>
|
<name>Core :: Rewrite</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-security</artifactId>
|
<artifactId>jetty-security</artifactId>
|
||||||
<name>Core :: Security</name>
|
<name>Core :: Security</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-server</artifactId>
|
<artifactId>jetty-server</artifactId>
|
||||||
<name>Core :: Server</name>
|
<name>Core :: Server</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-session</artifactId>
|
<artifactId>jetty-session</artifactId>
|
||||||
<name>Core :: Sessions</name>
|
<name>Core :: Sessions</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-slf4j-impl</artifactId>
|
<artifactId>jetty-slf4j-impl</artifactId>
|
||||||
<name>Core :: SLF4J Implementation</name>
|
<name>Core :: SLF4J Implementation</name>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-start</artifactId>
|
<artifactId>jetty-start</artifactId>
|
||||||
<name>Core :: Start</name>
|
<name>Core :: Start</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-tests</artifactId>
|
<artifactId>jetty-tests</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-test-client-transports</artifactId>
|
<artifactId>jetty-test-client-transports</artifactId>
|
||||||
<name>Core :: Tests :: Client Transports</name>
|
<name>Core :: Tests :: Client Transports</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-tests</artifactId>
|
<artifactId>jetty-tests</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-test-jmx</artifactId>
|
<artifactId>jetty-test-jmx</artifactId>
|
||||||
<name>Core :: Tests :: JMX</name>
|
<name>Core :: Tests :: JMX</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-tests</artifactId>
|
<artifactId>jetty-tests</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-unixdomain-server</artifactId>
|
<artifactId>jetty-unixdomain-server</artifactId>
|
||||||
<name>Core :: Unix-Domain Sockets :: Server</name>
|
<name>Core :: Unix-Domain Sockets :: Server</name>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-util-ajax</artifactId>
|
<artifactId>jetty-util-ajax</artifactId>
|
||||||
<name>Core :: Utilities :: JSON</name>
|
<name>Core :: Utilities :: JSON</name>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-util</artifactId>
|
<artifactId>jetty-util</artifactId>
|
||||||
<name>Core :: Utilities</name>
|
<name>Core :: Utilities</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.websocket</groupId>
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
||||||
<artifactId>jetty-websocket</artifactId>
|
<artifactId>jetty-websocket</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-websocket-core-client</artifactId>
|
<artifactId>jetty-websocket-core-client</artifactId>
|
||||||
<name>Core :: Websocket :: Client</name>
|
<name>Core :: Websocket :: Client</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.websocket</groupId>
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
||||||
<artifactId>jetty-websocket</artifactId>
|
<artifactId>jetty-websocket</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-websocket-core-common</artifactId>
|
<artifactId>jetty-websocket-core-common</artifactId>
|
||||||
<name>Core :: Websocket :: Common</name>
|
<name>Core :: Websocket :: Common</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.websocket</groupId>
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
||||||
<artifactId>jetty-websocket</artifactId>
|
<artifactId>jetty-websocket</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-websocket-core-server</artifactId>
|
<artifactId>jetty-websocket-core-server</artifactId>
|
||||||
<name>Core :: Websocket :: Server</name>
|
<name>Core :: Websocket :: Server</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.websocket</groupId>
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
||||||
<artifactId>jetty-websocket</artifactId>
|
<artifactId>jetty-websocket</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-websocket-core-tests</artifactId>
|
<artifactId>jetty-websocket-core-tests</artifactId>
|
||||||
<name>Core :: Websocket :: Tests</name>
|
<name>Core :: Websocket :: Tests</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.websocket</groupId>
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
||||||
<artifactId>jetty-websocket</artifactId>
|
<artifactId>jetty-websocket</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-websocket-jetty-api</artifactId>
|
<artifactId>jetty-websocket-jetty-api</artifactId>
|
||||||
<name>Core :: Websocket :: Jetty API</name>
|
<name>Core :: Websocket :: Jetty API</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.websocket</groupId>
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
||||||
<artifactId>jetty-websocket</artifactId>
|
<artifactId>jetty-websocket</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-websocket-jetty-client</artifactId>
|
<artifactId>jetty-websocket-jetty-client</artifactId>
|
||||||
<name>Core :: Websocket :: Jetty Client</name>
|
<name>Core :: Websocket :: Jetty Client</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.websocket</groupId>
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
||||||
<artifactId>jetty-websocket</artifactId>
|
<artifactId>jetty-websocket</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-websocket-jetty-common</artifactId>
|
<artifactId>jetty-websocket-jetty-common</artifactId>
|
||||||
<name>Core :: Websocket :: Jetty Common</name>
|
<name>Core :: Websocket :: Jetty Common</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.websocket</groupId>
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
||||||
<artifactId>jetty-websocket</artifactId>
|
<artifactId>jetty-websocket</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-websocket-jetty-server</artifactId>
|
<artifactId>jetty-websocket-jetty-server</artifactId>
|
||||||
<name>Core :: Websocket :: Jetty Server</name>
|
<name>Core :: Websocket :: Jetty Server</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.websocket</groupId>
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
||||||
<artifactId>jetty-websocket</artifactId>
|
<artifactId>jetty-websocket</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-websocket-jetty-tests</artifactId>
|
<artifactId>jetty-websocket-jetty-tests</artifactId>
|
||||||
<name>Core :: Websocket :: Jetty Tests</name>
|
<name>Core :: Websocket :: Jetty Tests</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.jetty.websocket</groupId>
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
||||||
<artifactId>jetty-websocket</artifactId>
|
<artifactId>jetty-websocket</artifactId>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-xml</artifactId>
|
<artifactId>jetty-xml</artifactId>
|
||||||
<name>Core :: XML</name>
|
<name>Core :: XML</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-project</artifactId>
|
<artifactId>jetty-project</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-core</artifactId>
|
<artifactId>jetty-core</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
||||||
<artifactId>jetty-ee10</artifactId>
|
<artifactId>jetty-ee10</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-ee10-annotations</artifactId>
|
<artifactId>jetty-ee10-annotations</artifactId>
|
||||||
<name>EE10 :: Servlet Annotations</name>
|
<name>EE10 :: Servlet Annotations</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
||||||
<artifactId>jetty-ee10</artifactId>
|
<artifactId>jetty-ee10</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-ee10-apache-jsp</artifactId>
|
<artifactId>jetty-ee10-apache-jsp</artifactId>
|
||||||
<name>EE10 :: Apache JSP</name>
|
<name>EE10 :: Apache JSP</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
||||||
<artifactId>jetty-ee10</artifactId>
|
<artifactId>jetty-ee10</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>jetty-ee10-bom</artifactId>
|
<artifactId>jetty-ee10-bom</artifactId>
|
||||||
|
@ -19,132 +19,132 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
||||||
<artifactId>jetty-ee10-annotations</artifactId>
|
<artifactId>jetty-ee10-annotations</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
||||||
<artifactId>jetty-ee10-apache-jsp</artifactId>
|
<artifactId>jetty-ee10-apache-jsp</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
||||||
<artifactId>jetty-ee10-cdi</artifactId>
|
<artifactId>jetty-ee10-cdi</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
||||||
<artifactId>jetty-ee10-fcgi-proxy</artifactId>
|
<artifactId>jetty-ee10-fcgi-proxy</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
||||||
<artifactId>jetty-ee10-glassfish-jstl</artifactId>
|
<artifactId>jetty-ee10-glassfish-jstl</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
||||||
<artifactId>jetty-ee10-jaspi</artifactId>
|
<artifactId>jetty-ee10-jaspi</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
||||||
<artifactId>jetty-ee10-jndi</artifactId>
|
<artifactId>jetty-ee10-jndi</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
||||||
<artifactId>jetty-ee10-jspc-maven-plugin</artifactId>
|
<artifactId>jetty-ee10-jspc-maven-plugin</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
||||||
<artifactId>jetty-ee10-maven-plugin</artifactId>
|
<artifactId>jetty-ee10-maven-plugin</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
||||||
<artifactId>jetty-ee10-plus</artifactId>
|
<artifactId>jetty-ee10-plus</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
||||||
<artifactId>jetty-ee10-proxy</artifactId>
|
<artifactId>jetty-ee10-proxy</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
||||||
<artifactId>jetty-ee10-quickstart</artifactId>
|
<artifactId>jetty-ee10-quickstart</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
||||||
<artifactId>jetty-ee10-runner</artifactId>
|
<artifactId>jetty-ee10-runner</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
||||||
<artifactId>jetty-ee10-servlet</artifactId>
|
<artifactId>jetty-ee10-servlet</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
||||||
<artifactId>jetty-ee10-servlets</artifactId>
|
<artifactId>jetty-ee10-servlets</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
||||||
<artifactId>jetty-ee10-webapp</artifactId>
|
<artifactId>jetty-ee10-webapp</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10.osgi</groupId>
|
<groupId>org.eclipse.jetty.ee10.osgi</groupId>
|
||||||
<artifactId>jetty-ee10-osgi-alpn</artifactId>
|
<artifactId>jetty-ee10-osgi-alpn</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10.osgi</groupId>
|
<groupId>org.eclipse.jetty.ee10.osgi</groupId>
|
||||||
<artifactId>jetty-ee10-osgi-boot</artifactId>
|
<artifactId>jetty-ee10-osgi-boot</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10.osgi</groupId>
|
<groupId>org.eclipse.jetty.ee10.osgi</groupId>
|
||||||
<artifactId>jetty-ee10-osgi-boot-jsp</artifactId>
|
<artifactId>jetty-ee10-osgi-boot-jsp</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10.websocket</groupId>
|
<groupId>org.eclipse.jetty.ee10.websocket</groupId>
|
||||||
<artifactId>jetty-ee10-websocket-jakarta-client</artifactId>
|
<artifactId>jetty-ee10-websocket-jakarta-client</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10.websocket</groupId>
|
<groupId>org.eclipse.jetty.ee10.websocket</groupId>
|
||||||
<artifactId>jetty-ee10-websocket-jakarta-client-webapp</artifactId>
|
<artifactId>jetty-ee10-websocket-jakarta-client-webapp</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10.websocket</groupId>
|
<groupId>org.eclipse.jetty.ee10.websocket</groupId>
|
||||||
<artifactId>jetty-ee10-websocket-jakarta-common</artifactId>
|
<artifactId>jetty-ee10-websocket-jakarta-common</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10.websocket</groupId>
|
<groupId>org.eclipse.jetty.ee10.websocket</groupId>
|
||||||
<artifactId>jetty-ee10-websocket-jakarta-server</artifactId>
|
<artifactId>jetty-ee10-websocket-jakarta-server</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10.websocket</groupId>
|
<groupId>org.eclipse.jetty.ee10.websocket</groupId>
|
||||||
<artifactId>jetty-ee10-websocket-jetty-client-webapp</artifactId>
|
<artifactId>jetty-ee10-websocket-jetty-client-webapp</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10.websocket</groupId>
|
<groupId>org.eclipse.jetty.ee10.websocket</groupId>
|
||||||
<artifactId>jetty-ee10-websocket-jetty-server</artifactId>
|
<artifactId>jetty-ee10-websocket-jetty-server</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty.ee10.websocket</groupId>
|
<groupId>org.eclipse.jetty.ee10.websocket</groupId>
|
||||||
<artifactId>jetty-ee10-websocket-servlet</artifactId>
|
<artifactId>jetty-ee10-websocket-servlet</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</dependencyManagement>
|
</dependencyManagement>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.ee10</groupId>
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
||||||
<artifactId>jetty-ee10</artifactId>
|
<artifactId>jetty-ee10</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-ee10-cdi</artifactId>
|
<artifactId>jetty-ee10-cdi</artifactId>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.ee10.demos</groupId>
|
<groupId>org.eclipse.jetty.ee10.demos</groupId>
|
||||||
<artifactId>jetty-ee10-demo-async-rest</artifactId>
|
<artifactId>jetty-ee10-demo-async-rest</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-ee10-demo-async-rest-jar</artifactId>
|
<artifactId>jetty-ee10-demo-async-rest-jar</artifactId>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.ee10.demos</groupId>
|
<groupId>org.eclipse.jetty.ee10.demos</groupId>
|
||||||
<artifactId>jetty-ee10-demo-async-rest</artifactId>
|
<artifactId>jetty-ee10-demo-async-rest</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-ee10-demo-async-rest-server</artifactId>
|
<artifactId>jetty-ee10-demo-async-rest-server</artifactId>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.ee10.demos</groupId>
|
<groupId>org.eclipse.jetty.ee10.demos</groupId>
|
||||||
<artifactId>jetty-ee10-demo-async-rest</artifactId>
|
<artifactId>jetty-ee10-demo-async-rest</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-ee10-demo-async-rest-webapp</artifactId>
|
<artifactId>jetty-ee10-demo-async-rest-webapp</artifactId>
|
||||||
<packaging>war</packaging>
|
<packaging>war</packaging>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.ee10.demos</groupId>
|
<groupId>org.eclipse.jetty.ee10.demos</groupId>
|
||||||
<artifactId>jetty-ee10-demos</artifactId>
|
<artifactId>jetty-ee10-demos</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-ee10-demo-async-rest</artifactId>
|
<artifactId>jetty-ee10-demo-async-rest</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.ee10.demos</groupId>
|
<groupId>org.eclipse.jetty.ee10.demos</groupId>
|
||||||
<artifactId>jetty-ee10-demos</artifactId>
|
<artifactId>jetty-ee10-demos</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-ee10-demo-embedded</artifactId>
|
<artifactId>jetty-ee10-demo-embedded</artifactId>
|
||||||
<name>EE10 :: Demo :: Embedded Jetty</name>
|
<name>EE10 :: Demo :: Embedded Jetty</name>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.ee10.demos</groupId>
|
<groupId>org.eclipse.jetty.ee10.demos</groupId>
|
||||||
<artifactId>jetty-ee10-demos</artifactId>
|
<artifactId>jetty-ee10-demos</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-ee10-demo-jaas-webapp</artifactId>
|
<artifactId>jetty-ee10-demo-jaas-webapp</artifactId>
|
||||||
<packaging>war</packaging>
|
<packaging>war</packaging>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.ee10.demos</groupId>
|
<groupId>org.eclipse.jetty.ee10.demos</groupId>
|
||||||
<artifactId>jetty-ee10-demos</artifactId>
|
<artifactId>jetty-ee10-demos</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-ee10-demo-jetty-webapp</artifactId>
|
<artifactId>jetty-ee10-demo-jetty-webapp</artifactId>
|
||||||
<packaging>war</packaging>
|
<packaging>war</packaging>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.jetty.ee10.demos</groupId>
|
<groupId>org.eclipse.jetty.ee10.demos</groupId>
|
||||||
<artifactId>jetty-ee10-demos</artifactId>
|
<artifactId>jetty-ee10-demos</artifactId>
|
||||||
<version>12.0.9-SNAPSHOT</version>
|
<version>12.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>jetty-ee10-demo-jndi-webapp</artifactId>
|
<artifactId>jetty-ee10-demo-jndi-webapp</artifactId>
|
||||||
<packaging>war</packaging>
|
<packaging>war</packaging>
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue