Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump testcontainers.version from 1.20.1 to 1.20.3 #233

Merged

Bump testcontainers.version from 1.20.1 to 1.20.3

3dcd067
Select commit
Loading
Failed to load commit list.
Merged

Bump testcontainers.version from 1.20.1 to 1.20.3 #233

Bump testcontainers.version from 1.20.1 to 1.20.3
3dcd067
Select commit
Loading
Failed to load commit list.
Webtide Jenkins / Jenkins failed Nov 8, 2024 in 3h 37m 26s

Build / Test - JDK11: error in 'sh' step

Build / Test - JDK11 / Shell Script

Error in sh step, with arguments mvn -V -B -e -DfailIfNoTests=false -fae clean verify.

null
Build log
+ mvn -V -B -e -DfailIfNoTests=false -fae clean verify
Picked up JAVA_TOOL_OPTIONS: -Dmaven.ext.class.path="/home/jenkins/agent/workspace/jetty.docker_PR-233@tmp/withMaven73f4fcb6/pipeline-maven-spy.jar" -Dorg.jenkinsci.plugins.pipeline.maven.reportsFolder="/home/jenkins/agent/workspace/jetty.docker_PR-233@tmp/withMaven73f4fcb6" 
Apache Maven 3.9.8 (36645f6c9b5079805ea5009217e36f2cffd34256)
Maven home: /home/jenkins/agent/tools/hudson.tasks.Maven_MavenInstallation/maven3/apache-maven-3.9.8
Java version: 11.0.22, vendor: Eclipse Adoptium, runtime: /home/jenkins/agent/tools/hudson.model.JDK/jdk11
Default locale: en, platform encoding: UTF-8
OS name: "linux", version: "5.15.0-124-lowlatency", arch: "amd64", family: "unix"
[INFO] [jenkins-event-spy] Generate /home/jenkins/agent/workspace/jetty.docker_PR-233@tmp/withMaven73f4fcb6/maven-spy-20241107-234221-6295852401955542080101.log.tmp ...
[INFO] Error stacktraces are turned on.
[INFO] Scanning for projects...
[INFO] 
[INFO] -------------------< org.eclipse.jetty:jetty-docker >-------------------
[INFO] Building jetty-docker 1.0-SNAPSHOT
[INFO]   from pom.xml
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- clean:3.2.0:clean (default-clean) @ jetty-docker ---
[INFO] 
[INFO] --- exec:3.5.0:exec (make-call) @ jetty-docker ---
docker build --no-cache -t jetty:10.0-jdk11-alpine-amazoncorretto amazoncorretto/10.0/jdk11-alpine
DEPRECATED: The legacy builder is deprecated and will be removed in a future release.
            Install the buildx component to build images with BuildKit:
            https://docs.docker.com/go/buildx/

Sending build context to Docker daemon  10.24kB

Step 1/15 : FROM amazoncorretto:11-alpine
 ---> 8cf68771091c
Step 2/15 : ENV JETTY_VERSION 10.0.24
 ---> Running in 09b432f00d92
Removing intermediate container 09b432f00d92
 ---> b217d09d531f
Step 3/15 : ENV JETTY_HOME /usr/local/jetty
 ---> Running in 8c91e0a5ce7e
Removing intermediate container 8c91e0a5ce7e
 ---> db13aa01eff8
Step 4/15 : ENV JETTY_BASE /var/lib/jetty
 ---> Running in 581d455a08c9
Removing intermediate container 581d455a08c9
 ---> ab00eb5a575b
Step 5/15 : ENV TMPDIR /tmp/jetty
 ---> Running in 4cab8ed3b578
Removing intermediate container 4cab8ed3b578
 ---> 5aa42d9b6f1f
Step 6/15 : ENV PATH $JETTY_HOME/bin:$PATH
 ---> Running in d25007cce345
Removing intermediate container d25007cce345
 ---> 007367c5717b
Step 7/15 : ENV JETTY_TGZ_URL https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-home/$JETTY_VERSION/jetty-home-$JETTY_VERSION.tar.gz
 ---> Running in 0b07d64117d8
Removing intermediate container 0b07d64117d8
 ---> 5c6ae256fcc2
Step 8/15 : ENV JETTY_GPG_KEYS 	AED5EE6C45D0FE8D5D1B164F27DED4BF6216DB8F 	2A684B57436A81FA8706B53C61C3351A438A3B7D 	5989BAF76217B843D66BE55B2D0E1FB8FE4B68B4 	B59B67FD7904984367F931800818D9D68FB67BAC 	BFBB21C246D7776836287A48A04E0C74ABB35FEA 	8B096546B1A8F02656B15D3B1677D141BCF3584D 	F254B35617DC255D9344BCFA873A8E86B4372146 	E22488CC94F63E3FC928536C4241C08270D999C3
 ---> Running in 1e432b4ca5f7
Removing intermediate container 1e432b4ca5f7
 ---> 239165f07021
Step 9/15 : RUN set -xe ; 	mkdir -p $TMPDIR ; 	apk add --no-cache gnupg curl ; 	export GNUPGHOME=/jetty-keys ; 	mkdir -p "$GNUPGHOME" ; 	for key in $JETTY_GPG_KEYS; do 		gpg --batch --keyserver "hkps://keyserver.ubuntu.com" --recv-keys "$key"; 	done ; 	mkdir -p "$JETTY_HOME" ; 	cd $JETTY_HOME ; 	curl -SL "$JETTY_TGZ_URL" -o jetty.tar.gz ; 	curl -SL "$JETTY_TGZ_URL.asc" -o jetty.tar.gz.asc ; 	gpg --batch --verify jetty.tar.gz.asc jetty.tar.gz ; 	tar -xvf jetty.tar.gz --strip-components=1 ; 	sed -i '/jetty-logging/d' etc/jetty.conf ; 	mkdir -p "$JETTY_BASE" ; 	cd $JETTY_BASE ; 	case "$JETTY_VERSION" in 		"12."*) START_MODULES="server,http,ext,resources" ;; 		*) START_MODULES="server,http,deploy,ext,resources,jsp,jstl,websocket" ;; 	esac ; 	java -jar "$JETTY_HOME/start.jar" --create-startd 		--add-to-start="$START_MODULES" ; 	addgroup -S jetty && adduser -h $JETTY_BASE -S jetty -G jetty; 	chown -R jetty:jetty "$JETTY_HOME" "$JETTY_BASE" "$TMPDIR" ; 	rm -rf /tmp/hsperfdata_root ; 	rm -fr $JETTY_HOME/jetty.tar.gz* ; 	gpgconf --kill all ; 	rm -fr /jetty-keys $GNUPGHOME ; 	rm -rf /tmp/hsperfdata_root ; 	java -jar "$JETTY_HOME/start.jar" --list-config ;
 ---> Running in f0debc286136
+ mkdir -p /tmp/jetty
+ apk add --no-cache gnupg curl
fetch https://dl-cdn.alpinelinux.org/alpine/v3.15/main/x86_64/APKINDEX.tar.gz
fetch https://dl-cdn.alpinelinux.org/alpine/v3.15/community/x86_64/APKINDEX.tar.gz
fetch https://apk.corretto.aws/x86_64/APKINDEX.tar.gz
(1/36) Installing ca-certificates (20230506-r0)
(2/36) Installing brotli-libs (1.0.9-r5)
(3/36) Installing nghttp2-libs (1.46.0-r2)
(4/36) Installing libcurl (8.5.0-r0)
(5/36) Installing curl (8.5.0-r0)
(6/36) Installing libgpg-error (1.42-r1)
(7/36) Installing libassuan (2.5.6-r0)
(8/36) Installing libcap (2.61-r1)
(9/36) Installing ncurses-terminfo-base (6.3_p20211120-r2)
(10/36) Installing ncurses-libs (6.3_p20211120-r2)
(11/36) Installing pinentry (1.2.0-r0)
Executing pinentry-1.2.0-r0.post-install
(12/36) Installing libgcrypt (1.9.4-r0)
(13/36) Installing gnupg-gpgconf (2.2.31-r2)
(14/36) Installing libbz2 (1.0.8-r1)
(15/36) Installing sqlite-libs (3.36.0-r0)
(16/36) Installing gpg (2.2.31-r2)
(17/36) Installing npth (1.6-r1)
(18/36) Installing gpg-agent (2.2.31-r2)
(19/36) Installing gpg-wks-server (2.2.31-r2)
(20/36) Installing libksba (1.6.4-r0)
(21/36) Installing gpgsm (2.2.31-r2)
(22/36) Installing gpgv (2.2.31-r2)
(23/36) Installing gmp (6.2.1-r1)
(24/36) Installing nettle (3.7.3-r0)
(25/36) Installing libffi (3.4.2-r1)
(26/36) Installing p11-kit (0.24.0-r1)
(27/36) Installing libtasn1 (4.18.0-r1)
(28/36) Installing libunistring (0.9.10-r1)
(29/36) Installing gnutls (3.7.1-r2)
(30/36) Installing gdbm (1.22-r0)
(31/36) Installing libsasl (2.1.28-r0)
(32/36) Installing libldap (2.6.2-r0)
(33/36) Installing gnupg-dirmngr (2.2.31-r2)
(34/36) Installing gnupg-utils (2.2.31-r2)
(35/36) Installing gnupg-wks-client (2.2.31-r2)
(36/36) Installing gnupg (2.2.31-r2)
Executing busybox-1.34.1-r3.trigger
Executing ca-certificates-20230506-r0.trigger
OK: 328 MiB in 52 packages
+ export 'GNUPGHOME=/jetty-keys'
+ mkdir -p /jetty-keys
+ gpg --batch --keyserver hkps://keyserver.ubuntu.com --recv-keys AED5EE6C45D0FE8D5D1B164F27DED4BF6216DB8F
gpg: keybox '/jetty-keys/pubring.kbx' created
gpg: /jetty-keys/trustdb.gpg: trustdb created
gpg: key 27DED4BF6216DB8F: public key "Jan Bartel <[email protected]>" imported
gpg: Total number processed: 1
gpg:               imported: 1
+ gpg --batch --keyserver hkps://keyserver.ubuntu.com --recv-keys 2A684B57436A81FA8706B53C61C3351A438A3B7D
gpg: key 61C3351A438A3B7D: public key "Jesse McConnell (master) <[email protected]>" imported
gpg: Total number processed: 1
gpg:               imported: 1
+ gpg --batch --keyserver hkps://keyserver.ubuntu.com --recv-keys 5989BAF76217B843D66BE55B2D0E1FB8FE4B68B4
gpg: key 2D0E1FB8FE4B68B4: public key "Joakim Erdfelt <[email protected]>" imported
gpg: Total number processed: 1
gpg:               imported: 1
+ gpg --batch --keyserver hkps://keyserver.ubuntu.com --recv-keys B59B67FD7904984367F931800818D9D68FB67BAC
gpg: key 0818D9D68FB67BAC: public key "Joakim Erdfelt <[email protected]>" imported
gpg: Total number processed: 1
gpg:               imported: 1
+ gpg --batch --keyserver hkps://keyserver.ubuntu.com --recv-keys BFBB21C246D7776836287A48A04E0C74ABB35FEA
gpg: key A04E0C74ABB35FEA: public key "Joakim Erdfelt <[email protected]>" imported
gpg: Total number processed: 1
gpg:               imported: 1
+ gpg --batch --keyserver hkps://keyserver.ubuntu.com --recv-keys 8B096546B1A8F02656B15D3B1677D141BCF3584D
gpg: key 1677D141BCF3584D: public key "Simone Bordet <[email protected]>" imported
gpg: Total number processed: 1
gpg:               imported: 1
+ gpg --batch --keyserver hkps://keyserver.ubuntu.com --recv-keys F254B35617DC255D9344BCFA873A8E86B4372146
gpg: key 873A8E86B4372146: public key "Olivier Lamy <[email protected]>" imported
gpg: Total number processed: 1
gpg:               imported: 1
+ gpg --batch --keyserver hkps://keyserver.ubuntu.com --recv-keys E22488CC94F63E3FC928536C4241C08270D999C3
gpg: key 4241C08270D999C3: public key "Ludovic Orban <[email protected]>" imported
gpg: Total number processed: 1
gpg:               imported: 1
+ mkdir -p /usr/local/jetty
+ cd /usr/local/jetty
+ curl -SL https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-home/10.0.24/jetty-home-10.0.24.tar.gz -o jetty.tar.gz
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100 10.5M  100 10.5M    0     0  28.1M      0 --:--:-- --:--:-- --:--:-- 28.2M
+ curl -SL https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-home/10.0.24/jetty-home-10.0.24.tar.gz.asc -o jetty.tar.gz.asc
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100   870  100   870    0     0   8815      0 --:--:-- --:--:-- --:--:--  8787
+ gpg --batch --verify jetty.tar.gz.asc jetty.tar.gz
gpg: Signature made Mon Aug 26 18:04:06 2024 UTC
gpg:                using RSA key 5989BAF76217B843D66BE55B2D0E1FB8FE4B68B4
gpg:                issuer "[email protected]"
gpg: Good signature from "Joakim Erdfelt <[email protected]>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 5989 BAF7 6217 B843 D66B  E55B 2D0E 1FB8 FE4B 68B4
+ tar -xvf jetty.tar.gz '--strip-components=1'
jetty-home-10.0.24/
jetty-home-10.0.24/lib/
jetty-home-10.0.24/lib/websocket/
jetty-home-10.0.24/lib/annotations/
jetty-home-10.0.24/lib/setuid/
jetty-home-10.0.24/lib/http3/
jetty-home-10.0.24/lib/jaspi/
jetty-home-10.0.24/lib/apache-jstl/
jetty-home-10.0.24/lib/http2/
jetty-home-10.0.24/lib/apache-jsp/
jetty-home-10.0.24/lib/logging/
jetty-home-10.0.24/lib/fcgi/
jetty-home-10.0.24/etc/
jetty-home-10.0.24/etc/jaspi/
jetty-home-10.0.24/etc/sessions/
jetty-home-10.0.24/etc/sessions/mongo/
jetty-home-10.0.24/etc/sessions/infinispan/
jetty-home-10.0.24/etc/sessions/jdbc/
jetty-home-10.0.24/etc/sessions/gcloud/
jetty-home-10.0.24/etc/sessions/hazelcast/
jetty-home-10.0.24/etc/sessions/file/
jetty-home-10.0.24/etc/sessions/session-data-cache/
jetty-home-10.0.24/etc/cdi/
jetty-home-10.0.24/bin/
jetty-home-10.0.24/modules/
jetty-home-10.0.24/modules/hawtio/
jetty-home-10.0.24/modules/openid/
jetty-home-10.0.24/modules/jamon/
jetty-home-10.0.24/modules/sessions/
jetty-home-10.0.24/modules/sessions/mongo/
jetty-home-10.0.24/modules/sessions/infinispan/
jetty-home-10.0.24/modules/sessions/infinispan/embedded/
jetty-home-10.0.24/modules/sessions/infinispan/remote/
jetty-home-10.0.24/modules/sessions/infinispan/remote/resources/
jetty-home-10.0.24/modules/sessions/jdbc/
jetty-home-10.0.24/modules/sessions/session-data-cache/
jetty-home-10.0.24/modules/gcloud/
jetty-home-10.0.24/modules/inetaccess/
jetty-home-10.0.24/modules/demo.d/
jetty-home-10.0.24/modules/demo.d/root/
jetty-home-10.0.24/modules/demo.d/root/images/
jetty-home-10.0.24/modules/rewrite/
jetty-home-10.0.24/modules/jolokia/
jetty-home-10.0.24/modules/jetty-quickstart.d/
jetty-home-10.0.24/modules/conscrypt/
jetty-home-10.0.24/modules/jmx.d/
jetty-home-10.0.24/modules/global-webapp-common.d/
jetty-home-10.0.24/modules/logging/
jetty-home-10.0.24/modules/logging/log4j1/
jetty-home-10.0.24/modules/logging/log4j1/resources/
jetty-home-10.0.24/modules/logging/log4j2/
jetty-home-10.0.24/modules/logging/log4j2/resources/
jetty-home-10.0.24/modules/logging/jetty/
jetty-home-10.0.24/modules/logging/jetty/resources/
jetty-home-10.0.24/modules/logging/logback/
jetty-home-10.0.24/modules/logging/logback/resources/
jetty-home-10.0.24/modules/logging/jul/
jetty-home-10.0.24/modules/logging/jul/resources/
jetty-home-10.0.24/README.adoc
jetty-home-10.0.24/lib/websocket/websocket-core-common-10.0.24.jar
jetty-home-10.0.24/lib/websocket/websocket-jetty-api-10.0.24.jar
jetty-home-10.0.24/lib/websocket/websocket-jetty-server-10.0.24.jar
jetty-home-10.0.24/lib/websocket/websocket-core-server-10.0.24.jar
jetty-home-10.0.24/lib/websocket/websocket-javax-client-10.0.24.jar
jetty-home-10.0.24/lib/websocket/websocket-javax-common-10.0.24.jar
jetty-home-10.0.24/lib/websocket/websocket-core-client-10.0.24.jar
jetty-home-10.0.24/lib/websocket/websocket-jetty-client-10.0.24.jar
jetty-home-10.0.24/lib/websocket/websocket-jetty-common-10.0.24.jar
jetty-home-10.0.24/lib/websocket/websocket-servlet-10.0.24.jar
jetty-home-10.0.24/lib/websocket/websocket-javax-server-10.0.24.jar
jetty-home-10.0.24/lib/websocket/jetty-javax-websocket-api-1.1.2.jar
jetty-home-10.0.24/lib/jetty-security-10.0.24.jar
jetty-home-10.0.24/lib/jetty-nosql-10.0.24.jar
jetty-home-10.0.24/lib/jetty-gcloud-session-manager-10.0.24.jar
jetty-home-10.0.24/lib/annotations/asm-tree-9.7.jar
jetty-home-10.0.24/lib/annotations/asm-9.7.jar
jetty-home-10.0.24/lib/annotations/asm-analysis-9.7.jar
jetty-home-10.0.24/lib/annotations/asm-commons-9.7.jar
jetty-home-10.0.24/lib/annotations/jakarta.annotation-api-1.3.5.jar
jetty-home-10.0.24/lib/jetty-deploy-10.0.24.jar
jetty-home-10.0.24/lib/setuid/libsetuid-osx.so
jetty-home-10.0.24/lib/setuid/jetty-setuid-java-1.0.4.jar
jetty-home-10.0.24/lib/setuid/libsetuid-linux.so
jetty-home-10.0.24/lib/http3/http3-server-10.0.24.jar
jetty-home-10.0.24/lib/http3/quic-server-10.0.24.jar
jetty-home-10.0.24/lib/http3/http3-qpack-10.0.24.jar
jetty-home-10.0.24/lib/http3/quic-common-10.0.24.jar
jetty-home-10.0.24/lib/http3/http3-common-10.0.24.jar
jetty-home-10.0.24/lib/http3/quic-quiche-jna-10.0.24.jar
jetty-home-10.0.24/lib/http3/quic-quiche-common-10.0.24.jar
jetty-home-10.0.24/lib/jetty-servlets-10.0.24.jar
jetty-home-10.0.24/lib/jetty-plus-10.0.24.jar
jetty-home-10.0.24/lib/infinispan-remote-query-10.0.24.jar
jetty-home-10.0.24/lib/jaspi/jakarta.security.auth.message-api-1.1.3.jar
jetty-home-10.0.24/lib/jetty-proxy-10.0.24.jar
jetty-home-10.0.24/lib/jetty-servlet-10.0.24.jar
jetty-home-10.0.24/lib/jetty-server-10.0.24.jar
jetty-home-10.0.24/lib/jetty-jaas-10.0.24.jar
jetty-home-10.0.24/lib/apache-jstl/org.apache.taglibs.taglibs-standard-spec-1.2.5.jar
jetty-home-10.0.24/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar
jetty-home-10.0.24/lib/jetty-client-10.0.24.jar
jetty-home-10.0.24/lib/jetty-alpn-conscrypt-server-10.0.24.jar
jetty-home-10.0.24/lib/jetty-jaspi-10.0.24.jar
jetty-home-10.0.24/lib/jetty-unixdomain-server-10.0.24.jar
jetty-home-10.0.24/lib/jakarta.transaction-api-1.3.3.jar
jetty-home-10.0.24/lib/jetty-alpn-server-10.0.24.jar
jetty-home-10.0.24/lib/jetty-unixsocket-common-10.0.24.jar
jetty-home-10.0.24/lib/jetty-annotations-10.0.24.jar
jetty-home-10.0.24/lib/jetty-jndi-10.0.24.jar
jetty-home-10.0.24/lib/jetty-openid-10.0.24.jar
jetty-home-10.0.24/lib/http2/http2-server-10.0.24.jar
jetty-home-10.0.24/lib/http2/http2-hpack-10.0.24.jar
jetty-home-10.0.24/lib/http2/http2-common-10.0.24.jar
jetty-home-10.0.24/lib/apache-jsp/org.mortbay.jasper.apache-jsp-9.0.90.jar
jetty-home-10.0.24/lib/apache-jsp/org.mortbay.jasper.apache-el-9.0.90.jar
jetty-home-10.0.24/lib/apache-jsp/org.eclipse.jetty.apache-jsp-10.0.24.jar
jetty-home-10.0.24/lib/apache-jsp/org.eclipse.jdt.ecj-3.33.0.jar
jetty-home-10.0.24/lib/jetty-xml-10.0.24.jar
jetty-home-10.0.24/lib/jetty-unixsocket-server-10.0.24.jar
jetty-home-10.0.24/lib/jetty-servlet-api-4.0.6.jar
jetty-home-10.0.24/lib/jetty-alpn-client-10.0.24.jar
jetty-home-10.0.24/lib/jetty-http-10.0.24.jar
jetty-home-10.0.24/lib/jetty-quickstart-10.0.24.jar
jetty-home-10.0.24/lib/jetty-alpn-java-server-10.0.24.jar
jetty-home-10.0.24/lib/jetty-memcached-sessions-10.0.24.jar
jetty-home-10.0.24/lib/jetty-util-10.0.24.jar
jetty-home-10.0.24/lib/jetty-util-ajax-10.0.24.jar
jetty-home-10.0.24/lib/jetty-keystore-10.0.24.jar
jetty-home-10.0.24/lib/jetty-jmx-10.0.24.jar
jetty-home-10.0.24/lib/jetty-rewrite-10.0.24.jar
jetty-home-10.0.24/lib/jetty-webapp-10.0.24.jar
jetty-home-10.0.24/lib/jetty-hazelcast-10.0.24.jar
jetty-home-10.0.24/lib/logging/jetty-slf4j-impl-10.0.24.jar
jetty-home-10.0.24/lib/logging/slf4j-api-2.0.9.jar
jetty-home-10.0.24/lib/fcgi/fcgi-client-10.0.24.jar
jetty-home-10.0.24/lib/fcgi/fcgi-server-10.0.24.jar
jetty-home-10.0.24/lib/infinispan-embedded-query-10.0.24.jar
jetty-home-10.0.24/lib/jetty-io-10.0.24.jar
jetty-home-10.0.24/lib/infinispan-common-10.0.24.jar
jetty-home-10.0.24/lib/jetty-cdi-10.0.24.jar
jetty-home-10.0.24/NOTICE.txt
jetty-home-10.0.24/etc/jetty-unixsocket-http2c.xml
jetty-home-10.0.24/etc/jetty-bytebufferpool-logarithmic.xml
jetty-home-10.0.24/etc/jetty-ssl-context.xml
jetty-home-10.0.24/etc/jetty-unixsocket-secure.xml
jetty-home-10.0.24/etc/jetty-gzip.xml
jetty-home-10.0.24/etc/jetty-proxy.xml
jetty-home-10.0.24/etc/jetty-jmx-remote.xml
jetty-home-10.0.24/etc/jetty-rewrite-customizer.xml
jetty-home-10.0.24/etc/console-capture.xml
jetty-home-10.0.24/etc/jetty-deploy.xml
jetty-home-10.0.24/etc/jetty-rewrite.xml
jetty-home-10.0.24/etc/jetty-web-decorate.xml
jetty-home-10.0.24/etc/jaspi/jaspi-default.xml
jetty-home-10.0.24/etc/jaspi/jaspi-authmoduleconfig.xml
jetty-home-10.0.24/etc/jaspi/jaspi-demo.xml
jetty-home-10.0.24/etc/jetty.xml
jetty-home-10.0.24/etc/rewrite-compactpath.xml
jetty-home-10.0.24/etc/jetty-http-forwarded.xml
jetty-home-10.0.24/etc/jetty-stats.xml
jetty-home-10.0.24/etc/sessions/mongo/session-store-by-uri.xml
jetty-home-10.0.24/etc/sessions/mongo/session-store-by-address.xml
jetty-home-10.0.24/etc/sessions/infinispan/infinispan-remote-query.xml
jetty-home-10.0.24/etc/sessions/infinispan/infinispan-embedded.xml
jetty-home-10.0.24/etc/sessions/infinispan/infinispan-common.xml
jetty-home-10.0.24/etc/sessions/infinispan/infinispan-embedded-query.xml
jetty-home-10.0.24/etc/sessions/infinispan/infinispan-remote.xml
jetty-home-10.0.24/etc/sessions/jdbc/session-store.xml
jetty-home-10.0.24/etc/sessions/jdbc/datasource.xml
jetty-home-10.0.24/etc/sessions/jdbc/driver.xml
jetty-home-10.0.24/etc/sessions/gcloud/session-store.xml
jetty-home-10.0.24/etc/sessions/id-manager.xml
jetty-home-10.0.24/etc/sessions/hazelcast/default.xml
jetty-home-10.0.24/etc/sessions/hazelcast/remote.xml
jetty-home-10.0.24/etc/sessions/file/session-store.xml
jetty-home-10.0.24/etc/sessions/session-data-cache/session-caching-store.xml
jetty-home-10.0.24/etc/sessions/session-data-cache/xmemcached.xml
jetty-home-10.0.24/etc/sessions/session-cache-hash.xml
jetty-home-10.0.24/etc/sessions/session-cache-null.xml
jetty-home-10.0.24/etc/jetty-unixsocket-http.xml
jetty-home-10.0.24/etc/jetty-unixsocket-forwarded.xml
jetty-home-10.0.24/etc/jetty.conf
jetty-home-10.0.24/etc/jetty-jaas.xml
jetty-home-10.0.24/etc/jetty-quickstart.xml
jetty-home-10.0.24/etc/jetty-threadpool-virtual.xml
jetty-home-10.0.24/etc/jetty-test-keystore.xml
jetty-home-10.0.24/etc/jetty-openid.xml
jetty-home-10.0.24/etc/jetty-decorate.xml
jetty-home-10.0.24/etc/jetty-requestlog.xml
jetty-home-10.0.24/etc/jetty-alpn.xml
jetty-home-10.0.24/etc/jetty-unixsocket.xml
jetty-home-10.0.24/etc/jetty-unixsocket-proxy-protocol.xml
jetty-home-10.0.24/etc/jetty-pid.xml
jetty-home-10.0.24/etc/jetty-halt.xml
jetty-home-10.0.24/etc/jetty-proxy-protocol-ssl.xml
jetty-home-10.0.24/etc/jetty-http2.xml
jetty-home-10.0.24/etc/jetty-debuglog.xml
jetty-home-10.0.24/etc/jetty-http.xml
jetty-home-10.0.24/etc/cdi/jetty-cdi.xml
jetty-home-10.0.24/etc/jetty-debug.xml
jetty-home-10.0.24/etc/jetty-jmx.xml
jetty-home-10.0.24/etc/jetty-threadlimit.xml
jetty-home-10.0.24/etc/jdbcRealm.properties
jetty-home-10.0.24/etc/jetty-stop.xml
jetty-home-10.0.24/etc/jetty-unixdomain-http.xml
jetty-home-10.0.24/etc/jetty-threadpool-virtual-preview.xml
jetty-home-10.0.24/etc/jetty-http3.xml
jetty-home-10.0.24/etc/jetty-state.xml
jetty-home-10.0.24/etc/well-known.xml
jetty-home-10.0.24/etc/jetty-acceptratelimit.xml
jetty-home-10.0.24/etc/jetty-ssl.xml
jetty-home-10.0.24/etc/jetty-webapp.xml
jetty-home-10.0.24/etc/jetty-connectionlimit.xml
jetty-home-10.0.24/etc/jetty-http2c.xml
jetty-home-10.0.24/etc/jetty-proxy-protocol.xml
jetty-home-10.0.24/etc/jetty-secure-redirect.xml
jetty-home-10.0.24/etc/jetty-https.xml
jetty-home-10.0.24/etc/jetty-lowresources.xml
jetty-home-10.0.24/etc/jetty-setuid.xml
jetty-home-10.0.24/etc/jetty-bytebufferpool.xml
jetty-home-10.0.24/etc/jetty-ssl-context-reload.xml
jetty-home-10.0.24/etc/home-base-warning.xml
jetty-home-10.0.24/etc/webdefault.xml
jetty-home-10.0.24/etc/jetty-threadpool.xml
jetty-home-10.0.24/start.jar
jetty-home-10.0.24/bin/jetty.service
jetty-home-10.0.24/modules/apache-jstl.mod
jetty-home-10.0.24/modules/logging-jcl-capture.mod
jetty-home-10.0.24/modules/demo-rewrite.mod
jetty-home-10.0.24/modules/flight-recorder.mod
jetty-home-10.0.24/modules/unixdomain-http.mod
jetty-home-10.0.24/modules/gcloud.mod
jetty-home-10.0.24/modules/unixsocket-secure.mod
jetty-home-10.0.24/modules/ext.mod
jetty-home-10.0.24/modules/server.mod
jetty-home-10.0.24/modules/deploy.mod
jetty-home-10.0.24/modules/fcgi.mod
jetty-home-10.0.24/modules/sessions.mod
jetty-home-10.0.24/modules/logging-noop.mod
jetty-home-10.0.24/modules/resources.mod
jetty-home-10.0.24/modules/session-cache-hash.mod
jetty-home-10.0.24/modules/jsp.mod
jetty-home-10.0.24/modules/quiche.mod
jetty-home-10.0.24/modules/http-forwarded.mod
jetty-home-10.0.24/modules/decorate.mod
jetty-home-10.0.24/modules/jmx-remote-ssl.mod
jetty-home-10.0.24/modules/conscrypt.mod
jetty-home-10.0.24/modules/hawtio/hawtio.xml
jetty-home-10.0.24/modules/apache-jsp.mod
jetty-home-10.0.24/modules/openid/openid-baseloginservice.xml
jetty-home-10.0.24/modules/cdi-decorate.mod
jetty-home-10.0.24/modules/threadlimit.mod
jetty-home-10.0.24/modules/jamon/jamon.xml
jetty-home-10.0.24/modules/demo-root.mod
jetty-home-10.0.24/modules/jamon.mod
jetty-home-10.0.24/modules/threadpool.mod
jetty-home-10.0.24/modules/websocket-jetty-client.mod
jetty-home-10.0.24/modules/secure-redirect.mod
jetty-home-10.0.24/modules/rewrite.mod
jetty-home-10.0.24/modules/infinispan-embedded-query.mod
jetty-home-10.0.24/modules/unixsocket-http.mod
jetty-home-10.0.24/modules/cdi-spi.mod
jetty-home-10.0.24/modules/rewrite-compactpath.mod
jetty-home-10.0.24/modules/stats.mod
jetty-home-10.0.24/modules/security.mod
jetty-home-10.0.24/modules/setuid.mod
jetty-home-10.0.24/modules/servlets.mod
jetty-home-10.0.24/modules/logging-jul.mod
jetty-home-10.0.24/modules/deprecated.properties
jetty-home-10.0.24/modules/proxy-protocol-ssl.mod
jetty-home-10.0.24/modules/openid.mod
jetty-home-10.0.24/modules/proxy.mod
jetty-home-10.0.24/modules/jaspi-default-auth-config-factory.mod
jetty-home-10.0.24/modules/unixsocket-proxy-protocol.mod
jetty-home-10.0.24/modules/servlet.mod
jetty-home-10.0.24/modules/sessions/mongo/address.mod
jetty-home-10.0.24/modules/sessions/mongo/uri.mod
jetty-home-10.0.24/modules/sessions/infinispan/embedded/infinispan-embedded-query-libs.mod
jetty-home-10.0.24/modules/sessions/infinispan/embedded/infinispan-embedded-serverclasses.mod
jetty-home-10.0.24/modules/sessions/infinispan/embedded/infinispan.xml
jetty-home-10.0.24/modules/sessions/infinispan/embedded/infinispan-embedded-libs.mod
jetty-home-10.0.24/modules/sessions/infinispan/remote/infinispan-remote-libs.mod
jetty-home-10.0.24/modules/sessions/infinispan/remote/infinispan-remote-serverclasses.mod
jetty-home-10.0.24/modules/sessions/infinispan/remote/resources/hotrod-client.properties
jetty-home-10.0.24/modules/sessions/infinispan/remote/infinispan-remote-query-libs.mod
jetty-home-10.0.24/modules/sessions/infinispan/infinispan-common.mod
jetty-home-10.0.24/modules/sessions/jdbc/datasource.mod
jetty-home-10.0.24/modules/sessions/jdbc/driver.mod
jetty-home-10.0.24/modules/sessions/session-data-cache/xmemcached.mod
jetty-home-10.0.24/modules/demo-jndi.mod
jetty-home-10.0.24/modules/gcloud/index.yaml
jetty-home-10.0.24/modules/jndi.mod
jetty-home-10.0.24/modules/msie.mod
jetty-home-10.0.24/modules/inetaccess/jetty-inetaccess.xml
jetty-home-10.0.24/modules/demo-realm.mod
jetty-home-10.0.24/modules/quickstart.mod
jetty-home-10.0.24/modules/jmx.mod
jetty-home-10.0.24/modules/alpn-java.mod
jetty-home-10.0.24/modules/alpn.mod
jetty-home-10.0.24/modules/logging-jul-capture.mod
jetty-home-10.0.24/modules/http.mod
jetty-home-10.0.24/modules/session-store-hazelcast-embedded.mod
jetty-home-10.0.24/modules/unixsocket-http2c.mod
jetty-home-10.0.24/modules/demo-jsp.mod
jetty-home-10.0.24/modules/websocket.mod
jetty-home-10.0.24/modules/session-store-hazelcast-remote.mod
jetty-home-10.0.24/modules/lowresources.mod
jetty-home-10.0.24/modules/session-store-infinispan-embedded.mod
jetty-home-10.0.24/modules/jvm.mod
jetty-home-10.0.24/modules/hawtio.mod
jetty-home-10.0.24/modules/jmx-remote-auth.mod
jetty-home-10.0.24/modules/jolokia.mod
jetty-home-10.0.24/modules/session-cache-null.mod
jetty-home-10.0.24/modules/annotations.mod
jetty-home-10.0.24/modules/demo-proxy.mod
jetty-home-10.0.24/modules/logging-logback.mod
jetty-home-10.0.24/modules/session-store-file.mod
jetty-home-10.0.24/modules/unixsocket.mod
jetty-home-10.0.24/modules/demo.d/demo-login.conf
jetty-home-10.0.24/modules/demo.d/demo-jetty-override-web.xml
jetty-home-10.0.24/modules/demo.d/demo-login.properties
jetty-home-10.0.24/modules/demo.d/demo-jetty.xml
jetty-home-10.0.24/modules/demo.d/demo-jaas.xml
jetty-home-10.0.24/modules/demo.d/demo-realm.xml
jetty-home-10.0.24/modules/demo.d/demo-moved-context.xml
jetty-home-10.0.24/modules/demo.d/demo-realm.properties
jetty-home-10.0.24/modules/demo.d/demo-jndi.xml
jetty-home-10.0.24/modules/demo.d/demo-rewrite-rules.xml
jetty-home-10.0.24/modules/demo.d/demo-spec.xml
jetty-home-10.0.24/modules/demo.d/root/images/webtide_logo.jpg
jetty-home-10.0.24/modules/demo.d/root/images/jetty-pic.png
jetty-home-10.0.24/modules/demo.d/root/jetty.css
jetty-home-10.0.24/modules/demo.d/root/index.html
jetty-home-10.0.24/modules/inetaccess.mod
jetty-home-10.0.24/modules/requestlog.mod
jetty-home-10.0.24/modules/session-store-gcloud.mod
jetty-home-10.0.24/modules/bytebufferpool-logarithmic.mod
jetty-home-10.0.24/modules/demo-async-rest.mod
jetty-home-10.0.24/modules/debuglog.mod
jetty-home-10.0.24/modules/webapp.mod
jetty-home-10.0.24/modules/cdi.mod
jetty-home-10.0.24/modules/rewrite/rewrite-rules.xml
jetty-home-10.0.24/modules/rewrite/rewrite-msie.xml
jetty-home-10.0.24/modules/unixsocket-forwarded.mod
jetty-home-10.0.24/modules/jolokia/jolokia.xml
jetty-home-10.0.24/modules/jolokia/jolokia-realm.properties
jetty-home-10.0.24/modules/jna.mod
jetty-home-10.0.24/modules/jetty-quickstart.d/quickstart-webapp.xml
jetty-home-10.0.24/modules/conscrypt/conscrypt.xml
jetty-home-10.0.24/modules/ssl-reload.mod
jetty-home-10.0.24/modules/demo-moved-context.mod
jetty-home-10.0.24/modules/gzip.mod
jetty-home-10.0.24/modules/demo-simple.mod
jetty-home-10.0.24/modules/acceptratelimit.mod
jetty-home-10.0.24/modules/stop.mod
jetty-home-10.0.24/modules/rewrite-customizer.mod
jetty-home-10.0.24/modules/connectionlimit.mod
jetty-home-10.0.24/modules/well-known.mod
jetty-home-10.0.24/modules/client.mod
jetty-home-10.0.24/modules/demo-jaas.mod
jetty-home-10.0.24/modules/gcloud-datastore.mod
jetty-home-10.0.24/modules/threadpool-virtual-preview.mod
jetty-home-10.0.24/modules/session-store-cache.mod
jetty-home-10.0.24/modules/demo-mock-resources.mod
jetty-home-10.0.24/modules/proxy-protocol.mod
jetty-home-10.0.24/modules/jaspi-demo.mod
jetty-home-10.0.24/modules/https.mod
jetty-home-10.0.24/modules/infinispan-remote.mod
jetty-home-10.0.24/modules/test-keystore.mod
jetty-home-10.0.24/modules/jmx.d/jmxremote.access
jetty-home-10.0.24/modules/jmx.d/jmx-remote-auth.xml
jetty-home-10.0.24/modules/jmx.d/jmx-remote-ssl.xml
jetty-home-10.0.24/modules/jmx.d/jmxremote.password
jetty-home-10.0.24/modules/global-webapp-common.d/webapp-common.xml
jetty-home-10.0.24/modules/global-webapp-common.d/global-webapp-common.xml
jetty-home-10.0.24/modules/jmx-remote.mod
jetty-home-10.0.24/modules/http3.mod
jetty-home-10.0.24/modules/jdbc.mod
jetty-home-10.0.24/modules/global-webapp-common.mod
jetty-home-10.0.24/modules/jaas.mod
jetty-home-10.0.24/modules/plus.mod
jetty-home-10.0.24/modules/session-store-infinispan-remote.mod
jetty-home-10.0.24/modules/work.mod
jetty-home-10.0.24/modules/customrequestlog.mod
jetty-home-10.0.24/modules/jstl.mod
jetty-home-10.0.24/modules/logging-log4j1.mod
jetty-home-10.0.24/modules/demo-jetty.mod
jetty-home-10.0.24/modules/jaspi.mod
jetty-home-10.0.24/modules/logging-log4j1-capture.mod
jetty-home-10.0.24/modules/http2c.mod
jetty-home-10.0.24/modules/websocket-jetty.mod
jetty-home-10.0.24/modules/infinispan-embedded.mod
jetty-home-10.0.24/modules/console-capture.mod
jetty-home-10.0.24/modules/ssl.mod
jetty-home-10.0.24/modules/pid.mod
jetty-home-10.0.24/modules/infinispan-remote-query.mod
jetty-home-10.0.24/modules/websocket-javax.mod
jetty-home-10.0.24/modules/state.mod
jetty-home-10.0.24/modules/http2.mod
jetty-home-10.0.24/modules/session-store-mongo.mod
jetty-home-10.0.24/modules/debug.mod
jetty-home-10.0.24/modules/logging-jetty.mod
jetty-home-10.0.24/modules/session-store-jdbc.mod
jetty-home-10.0.24/modules/demo-spec.mod
jetty-home-10.0.24/modules/logging-log4j2.mod
jetty-home-10.0.24/modules/logging/log4j1/resources/log4j.xml
jetty-home-10.0.24/modules/logging/log4j2/resources/log4j2.xml
jetty-home-10.0.24/modules/logging/slf4j.mod
jetty-home-10.0.24/modules/logging/jetty/resources/jetty-logging.properties
jetty-home-10.0.24/modules/logging/logback/resources/logback.xml
jetty-home-10.0.24/modules/logging/jul/resources/java-util-logging-bridge.properties
jetty-home-10.0.24/modules/logging/jul/resources/java-util-logging.properties
jetty-home-10.0.24/modules/demo.mod
jetty-home-10.0.24/modules/bytebufferpool.mod
jetty-home-10.0.24/modules/threadpool-virtual.mod
jetty-home-10.0.24/modules/home-base-warning.mod
jetty-home-10.0.24/LICENSE.txt
jetty-home-10.0.24/VERSION.txt
jetty-home-10.0.24/bin/jetty.sh
+ sed -i /jetty-logging/d etc/jetty.conf
+ mkdir -p /var/lib/jetty
+ cd /var/lib/jetty
+ START_MODULES=server,http,deploy,ext,resources,jsp,jstl,websocket
+ java -jar /usr/local/jetty/start.jar --create-startd '--add-to-start=server,http,deploy,ext,resources,jsp,jstl,websocket'
WARN  : Option --add-to-start is deprecated! Instead use: --add-module=server,http,deploy,ext,resources,jsp,jstl,websocket
INFO  : mkdir ${jetty.base}/start.d
INFO  : webapp          transitively enabled, ini template available with --add-module=webapp
INFO  : ext             initialized in ${jetty.base}/start.d/ext.ini
INFO  : websocket-jetty transitively enabled
INFO  : server          initialized in ${jetty.base}/start.d/server.ini
INFO  : servlet         transitively enabled
INFO  : jsp             initialized in ${jetty.base}/start.d/jsp.ini
INFO  : websocket-javax transitively enabled
INFO  : resources       initialized in ${jetty.base}/start.d/resources.ini
INFO  : annotations     transitively enabled
INFO  : threadpool      transitively enabled, ini template available with --add-module=threadpool
INFO  : plus            transitively enabled
INFO  : deploy          initialized in ${jetty.base}/start.d/deploy.ini
INFO  : jstl            initialized in ${jetty.base}/start.d/jstl.ini
INFO  : logging-jetty   transitively enabled
INFO  : security        transitively enabled
INFO  : apache-jsp      transitively enabled
INFO  : websocket       initialized in ${jetty.base}/start.d/websocket.ini
INFO  : jndi            transitively enabled
INFO  : http            initialized in ${jetty.base}/start.d/http.ini
INFO  : apache-jstl     transitively enabled
INFO  : client          transitively enabled
INFO  : logging/slf4j   transitive provider of logging/slf4j for logging-jetty
INFO  : logging/slf4j   dynamic dependency of logging-jetty
INFO  : bytebufferpool  transitively enabled, ini template available with --add-module=bytebufferpool
INFO  : mkdir ${jetty.base}/lib
INFO  : mkdir ${jetty.base}/lib/ext
INFO  : mkdir ${jetty.base}/resources
INFO  : mkdir ${jetty.base}/webapps
INFO  : copy ${jetty.home}/modules/logging/jetty/resources/jetty-logging.properties to ${jetty.base}/resources/jetty-logging.properties
INFO  : Base directory was modified
+ addgroup -S jetty
+ adduser -h /var/lib/jetty -S jetty -G jetty
+ chown -R jetty:jetty /usr/local/jetty /var/lib/jetty /tmp/jetty
+ rm -rf /tmp/hsperfdata_root
+ rm -fr /usr/local/jetty/jetty.tar.gz /usr/local/jetty/jetty.tar.gz.asc
+ gpgconf --kill all
+ rm -fr /jetty-keys /jetty-keys
+ rm -rf /tmp/hsperfdata_root
+ java -jar /usr/local/jetty/start.jar --list-config

Enabled Modules:
----------------
  0) bytebufferpool            transitive provider of bytebufferpool for server
                               ini template available with --add-module=bytebufferpool
  1) ext                       ${jetty.base}/start.d/ext.ini
  2) resources                 ${jetty.base}/start.d/resources.ini
  3) logging/slf4j             transitive provider of logging/slf4j for logging-jetty
                               dynamic dependency of logging-jetty
  4) logging-jetty             transitive provider of logging for threadpool
                               transitive provider of logging for server
  5) threadpool                transitive provider of threadpool for server
                               ini template available with --add-module=threadpool
  6) server                    ${jetty.base}/start.d/server.ini
  7) jndi                      transitive provider of jndi for plus
  8) security                  transitive provider of security for webapp
                               transitive provider of security for plus
  9) servlet                   transitive provider of servlet for webapp
                               transitive provider of servlet for jsp
 10) webapp                    transitive provider of webapp for plus
                               transitive provider of webapp for deploy
                               ini template available with --add-module=webapp
 11) plus                      transitive provider of plus for annotations
 12) annotations               transitive provider of annotations for websocket-jetty
                               transitive provider of annotations for jsp
                               transitive provider of annotations for websocket-javax
 13) apache-jsp                transitive provider of apache-jsp for jsp
 14) apache-jstl               transitive provider of apache-jstl for jstl
 15) client                    transitive provider of client for websocket-javax
 16) deploy                    ${jetty.base}/start.d/deploy.ini
 17) http                      ${jetty.base}/start.d/http.ini
 18) jsp                       ${jetty.base}/start.d/jsp.ini
 19) jstl                      ${jetty.base}/start.d/jstl.ini
 20) websocket-javax           transitive provider of websocket-javax for websocket
 21) websocket-jetty           transitive provider of websocket-jetty for websocket
 22) websocket                 ${jetty.base}/start.d/websocket.ini

Java Environment:
-----------------
 java.home = /usr/lib/jvm/java-11-amazon-corretto
 java.vm.vendor = Amazon.com Inc.
 java.vm.version = 11.0.13+8-LTS
 java.vm.name = OpenJDK 64-Bit Server VM
 java.vm.info = mixed mode
 java.runtime.name = OpenJDK Runtime Environment
 java.runtime.version = 11.0.13+8-LTS
 java.io.tmpdir = /tmp
 user.dir = /var/lib/jetty
 user.language = en
 user.country = US

Jetty Environment:
------------------
 jetty.version = 10.0.24
 jetty.tag.version = jetty-10.0.24
 jetty.build = d5384207795da96fad32db8ea8d26b69955bcc03
 jetty.home = /usr/local/jetty
 jetty.base = /var/lib/jetty

Config Search Order:
--------------------
 <command-line>
 ${jetty.base} -> /var/lib/jetty
 ${jetty.home} -> /usr/local/jetty

System Properties:
------------------
 (no system properties specified)

Properties:
-----------
 java.version = 11.0.13
 java.version.major = 11
 java.version.micro = 13
 java.version.minor = 0
 java.version.platform = 11
 jetty.base = /var/lib/jetty
 jetty.base.uri = file:///var/lib/jetty
 jetty.home = /usr/local/jetty
 jetty.home.uri = file:///usr/local/jetty
 jetty.webapp.addServerClasses = org.eclipse.jetty.logging.,${jetty.home.uri}/lib/logging/,org.slf4j.
 runtime.feature.alpn = true
 slf4j.version = 2.0.9

Jetty Server Classpath:
-----------------------
Version Information on 41 entries in the classpath.
Note: order presented here is how they would appear on the classpath.
      changes to the --module=name command line options will be reflected here.
 0:                    (dir) | ${jetty.base}/resources
 1:                    2.0.9 | ${jetty.home}/lib/logging/slf4j-api-2.0.9.jar
 2:                  10.0.24 | ${jetty.home}/lib/logging/jetty-slf4j-impl-10.0.24.jar
 3:                    4.0.6 | ${jetty.home}/lib/jetty-servlet-api-4.0.6.jar
 4:                  10.0.24 | ${jetty.home}/lib/jetty-http-10.0.24.jar
 5:                  10.0.24 | ${jetty.home}/lib/jetty-server-10.0.24.jar
 6:                  10.0.24 | ${jetty.home}/lib/jetty-xml-10.0.24.jar
 7:                  10.0.24 | ${jetty.home}/lib/jetty-util-10.0.24.jar
 8:                  10.0.24 | ${jetty.home}/lib/jetty-io-10.0.24.jar
 9:                  10.0.24 | ${jetty.home}/lib/jetty-jndi-10.0.24.jar
10:                  10.0.24 | ${jetty.home}/lib/jetty-security-10.0.24.jar
11:                  10.0.24 | ${jetty.home}/lib/jetty-servlet-10.0.24.jar
12:                  10.0.24 | ${jetty.home}/lib/jetty-webapp-10.0.24.jar
13:                  10.0.24 | ${jetty.home}/lib/jetty-plus-10.0.24.jar
14:                    1.3.3 | ${jetty.home}/lib/jakarta.transaction-api-1.3.3.jar
15:                  10.0.24 | ${jetty.home}/lib/jetty-annotations-10.0.24.jar
16:                      9.7 | ${jetty.home}/lib/annotations/asm-9.7.jar
17:                      9.7 | ${jetty.home}/lib/annotations/asm-analysis-9.7.jar
18:                      9.7 | ${jetty.home}/lib/annotations/asm-commons-9.7.jar
19:                      9.7 | ${jetty.home}/lib/annotations/asm-tree-9.7.jar
20:                    1.3.5 | ${jetty.home}/lib/annotations/jakarta.annotation-api-1.3.5.jar
21:    3.33.0.v20230218-1114 | ${jetty.home}/lib/apache-jsp/org.eclipse.jdt.ecj-3.33.0.jar
22:                  10.0.24 | ${jetty.home}/lib/apache-jsp/org.eclipse.jetty.apache-jsp-10.0.24.jar
23:                   9.0.90 | ${jetty.home}/lib/apache-jsp/org.mortbay.jasper.apache-el-9.0.90.jar
24:                   9.0.90 | ${jetty.home}/lib/apache-jsp/org.mortbay.jasper.apache-jsp-9.0.90.jar
25:                    1.2.5 | ${jetty.home}/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar
26:                    1.2.5 | ${jetty.home}/lib/apache-jstl/org.apache.taglibs.taglibs-standard-spec-1.2.5.jar
27:                  10.0.24 | ${jetty.home}/lib/jetty-client-10.0.24.jar
28:                  10.0.24 | ${jetty.home}/lib/jetty-alpn-client-10.0.24.jar
29:                  10.0.24 | ${jetty.home}/lib/jetty-deploy-10.0.24.jar
30:                  10.0.24 | ${jetty.home}/lib/websocket/websocket-core-common-10.0.24.jar
31:                  10.0.24 | ${jetty.home}/lib/websocket/websocket-core-client-10.0.24.jar
32:                  10.0.24 | ${jetty.home}/lib/websocket/websocket-core-server-10.0.24.jar
33:                  10.0.24 | ${jetty.home}/lib/websocket/websocket-servlet-10.0.24.jar
34:                    1.1.2 | ${jetty.home}/lib/websocket/jetty-javax-websocket-api-1.1.2.jar
35:                  10.0.24 | ${jetty.home}/lib/websocket/websocket-javax-client-10.0.24.jar
36:                  10.0.24 | ${jetty.home}/lib/websocket/websocket-javax-common-10.0.24.jar
37:                  10.0.24 | ${jetty.home}/lib/websocket/websocket-javax-server-10.0.24.jar
38:                  10.0.24 | ${jetty.home}/lib/websocket/websocket-jetty-api-10.0.24.jar
39:                  10.0.24 | ${jetty.home}/lib/websocket/websocket-jetty-common-10.0.24.jar
40:                  10.0.24 | ${jetty.home}/lib/websocket/websocket-jetty-server-10.0.24.jar

Jetty Active XMLs:
------------------
 ${jetty.home}/etc/jetty-bytebufferpool.xml
 ${jetty.home}/etc/jetty-threadpool.xml
 ${jetty.home}/etc/jetty.xml
 ${jetty.home}/etc/jetty-webapp.xml
 ${jetty.home}/etc/jetty-deploy.xml
 ${jetty.home}/etc/jetty-http.xml
Removing intermediate container f0debc286136
 ---> aa61a13b4a0b
Step 10/15 : WORKDIR $JETTY_BASE
 ---> Running in d2d53a48f434
Removing intermediate container d2d53a48f434
 ---> c55fc59e0e0c
Step 11/15 : COPY docker-entrypoint.sh generate-jetty-start.sh /
 ---> c2274194541a
Step 12/15 : USER jetty
 ---> Running in d13c376aabfd
Removing intermediate container d13c376aabfd
 ---> d3263d0d5460
Step 13/15 : EXPOSE 8080
 ---> Running in 200a4527560b
Removing intermediate container 200a4527560b
 ---> 7e920e30c425
Step 14/15 : ENTRYPOINT ["/docker-entrypoint.sh"]
 ---> Running in 5a44e0087371
Removing intermediate container 5a44e0087371
 ---> 307ca7ab12fa
Step 15/15 : CMD ["java","-jar","/usr/local/jetty/start.jar"]
 ---> Running in c673781bf075
Removing intermediate container c673781bf075
 ---> cf847c2ee6b8
Successfully built cf847c2ee6b8
Successfully tagged jetty:10.0-jdk11-alpine-amazoncorretto
docker build --no-cache -t jetty:10.0-jdk11-amazoncorretto amazoncorretto/10.0/jdk11
DEPRECATED: The legacy builder is deprecated and will be removed in a future release.
            Install the buildx component to build images with BuildKit:
            https://docs.docker.com/go/buildx/

Sending build context to Docker daemon  10.24kB

Step 1/15 : FROM amazoncorretto:11
 ---> 3bddb3dace85
Step 2/15 : ENV JETTY_VERSION 10.0.24
 ---> Running in 60229dc19905
Removing intermediate container 60229dc19905
 ---> 81380a1eb24e
Step 3/15 : ENV JETTY_HOME /usr/local/jetty
 ---> Running in c8b69eb1228b
Removing intermediate container c8b69eb1228b
 ---> 5b8952dad1c6
Step 4/15 : ENV JETTY_BASE /var/lib/jetty
 ---> Running in 8e03cde9580f
Removing intermediate container 8e03cde9580f
 ---> e76eec0d5956
Step 5/15 : ENV TMPDIR /tmp/jetty
 ---> Running in 00163d39d266
Removing intermediate container 00163d39d266
 ---> 44d8e0593f26
Step 6/15 : ENV PATH $JETTY_HOME/bin:$PATH
 ---> Running in 63f5219c82f8
Removing intermediate container 63f5219c82f8
 ---> b7a7f8e8ca62
Step 7/15 : ENV JETTY_TGZ_URL https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-home/$JETTY_VERSION/jetty-home-$JETTY_VERSION.tar.gz
 ---> Running in 9d0d2ad749e9
Removing intermediate container 9d0d2ad749e9
 ---> cd4080c49c4f
Step 8/15 : ENV JETTY_GPG_KEYS 	AED5EE6C45D0FE8D5D1B164F27DED4BF6216DB8F 	2A684B57436A81FA8706B53C61C3351A438A3B7D 	5989BAF76217B843D66BE55B2D0E1FB8FE4B68B4 	B59B67FD7904984367F931800818D9D68FB67BAC 	BFBB21C246D7776836287A48A04E0C74ABB35FEA 	8B096546B1A8F02656B15D3B1677D141BCF3584D 	F254B35617DC255D9344BCFA873A8E86B4372146 	E22488CC94F63E3FC928536C4241C08270D999C3
 ---> Running in 2690eb73d02c
Removing intermediate container 2690eb73d02c
 ---> d791f1e0b7de
Step 9/15 : RUN set -xe ; 	mkdir -p $TMPDIR ;     yum install -y shadow-utils tar xz gzip which && yum clean all ; 	export GNUPGHOME=/jetty-keys ; 	mkdir -p "$GNUPGHOME" ; 	for key in $JETTY_GPG_KEYS; do 		gpg --batch --keyserver "hkps://keyserver.ubuntu.com" --recv-keys "$key"; 	done ; 	mkdir -p "$JETTY_HOME" ; 	cd $JETTY_HOME ; 	curl -SL "$JETTY_TGZ_URL" -o jetty.tar.gz ; 	curl -SL "$JETTY_TGZ_URL.asc" -o jetty.tar.gz.asc ; 	gpg --batch --verify jetty.tar.gz.asc jetty.tar.gz ; 	tar -xvf jetty.tar.gz --strip-components=1 ; 	sed -i '/jetty-logging/d' etc/jetty.conf ; 	mkdir -p "$JETTY_BASE" ; 	cd $JETTY_BASE ; 	case "$JETTY_VERSION" in 		"12."*) START_MODULES="server,http,ext,resources" ;; 		*) START_MODULES="server,http,deploy,ext,resources,jsp,jstl,websocket" ;; 	esac ; 	java -jar "$JETTY_HOME/start.jar" --create-startd 		--add-to-start="$START_MODULES" ; 	groupadd -r jetty && useradd -r -g jetty jetty ; 	chown -R jetty:jetty "$JETTY_HOME" "$JETTY_BASE" "$TMPDIR" ; 	usermod -d $JETTY_BASE jetty ; 	rm -rf /tmp/hsperfdata_root ; 	rm -fr $JETTY_HOME/jetty.tar.gz* ; 	rm -fr /jetty-keys $GNUPGHOME ; 	rm -rf /tmp/hsperfdata_root ; 	java -jar "$JETTY_HOME/start.jar" --list-config ;
 ---> Running in 9730743ae3f6
+ mkdir -p /tmp/jetty
+ yum install -y shadow-utils tar xz gzip which
Loaded plugins: ovl, priorities
17 packages excluded due to repository priority protections
Resolving Dependencies
--> Running transaction check
---> Package gzip.x86_64 0:1.5-10.amzn2.0.1 will be installed
---> Package shadow-utils.x86_64 2:4.1.5.1-24.amzn2.0.3 will be installed
--> Processing Dependency: audit-libs >= 1.6.5 for package: 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64
--> Processing Dependency: libsemanage.so.1(LIBSEMANAGE_1.0)(64bit) for package: 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64
--> Processing Dependency: libaudit.so.1()(64bit) for package: 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64
--> Processing Dependency: libsemanage.so.1()(64bit) for package: 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64
---> Package tar.x86_64 2:1.26-35.amzn2.0.4 will be installed
---> Package which.x86_64 0:2.20-7.amzn2.0.2 will be installed
---> Package xz.x86_64 0:5.2.2-1.amzn2.0.3 will be installed
--> Processing Dependency: xz-libs = 5.2.2-1.amzn2.0.3 for package: xz-5.2.2-1.amzn2.0.3.x86_64
--> Running transaction check
---> Package audit-libs.x86_64 0:2.8.1-3.amzn2.1 will be installed
--> Processing Dependency: libcap-ng.so.0()(64bit) for package: audit-libs-2.8.1-3.amzn2.1.x86_64
---> Package libsemanage.x86_64 0:2.5-11.amzn2 will be installed
--> Processing Dependency: libustr-1.0.so.1(USTR_1.0)(64bit) for package: libsemanage-2.5-11.amzn2.x86_64
--> Processing Dependency: libustr-1.0.so.1(USTR_1.0.1)(64bit) for package: libsemanage-2.5-11.amzn2.x86_64
--> Processing Dependency: libustr-1.0.so.1()(64bit) for package: libsemanage-2.5-11.amzn2.x86_64
---> Package xz-libs.x86_64 0:5.2.2-1.amzn2.0.2 will be updated
---> Package xz-libs.x86_64 0:5.2.2-1.amzn2.0.3 will be an update
--> Running transaction check
---> Package libcap-ng.x86_64 0:0.7.5-4.amzn2.0.4 will be installed
---> Package ustr.x86_64 0:1.0.4-16.amzn2.0.3 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

================================================================================
 Package          Arch       Version                       Repository      Size
================================================================================
Installing:
 gzip             x86_64     1.5-10.amzn2.0.1              amzn2-core     129 k
 shadow-utils     x86_64     2:4.1.5.1-24.amzn2.0.3        amzn2-core     1.1 M
 tar              x86_64     2:1.26-35.amzn2.0.4           amzn2-core     846 k
 which            x86_64     2.20-7.amzn2.0.2              amzn2-core      41 k
 xz               x86_64     5.2.2-1.amzn2.0.3             amzn2-core     228 k
Installing for dependencies:
 audit-libs       x86_64     2.8.1-3.amzn2.1               amzn2-core      99 k
 libcap-ng        x86_64     0.7.5-4.amzn2.0.4             amzn2-core      25 k
 libsemanage      x86_64     2.5-11.amzn2                  amzn2-core     152 k
 ustr             x86_64     1.0.4-16.amzn2.0.3            amzn2-core      96 k
Updating for dependencies:
 xz-libs          x86_64     5.2.2-1.amzn2.0.3             amzn2-core     104 k

Transaction Summary
================================================================================
Install  5 Packages (+4 Dependent packages)
Upgrade             ( 1 Dependent package)

Total download size: 2.8 M
Downloading packages:
Delta RPMs disabled because /usr/bin/applydeltarpm not installed.
--------------------------------------------------------------------------------
Total                                              8.4 MB/s | 2.8 MB  00:00     
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  Updating   : xz-libs-5.2.2-1.amzn2.0.3.x86_64                            1/11 
  Installing : ustr-1.0.4-16.amzn2.0.3.x86_64                              2/11 
  Installing : libcap-ng-0.7.5-4.amzn2.0.4.x86_64                          3/11 
  Installing : audit-libs-2.8.1-3.amzn2.1.x86_64                           4/11 
  Installing : libsemanage-2.5-11.amzn2.x86_64                             5/11 
  Installing : 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64                  6/11 
  Installing : xz-5.2.2-1.amzn2.0.3.x86_64                                 7/11 
  Installing : 2:tar-1.26-35.amzn2.0.4.x86_64                              8/11 
  Installing : gzip-1.5-10.amzn2.0.1.x86_64                                9/11 
  Installing : which-2.20-7.amzn2.0.2.x86_64                              10/11 
  Cleanup    : xz-libs-5.2.2-1.amzn2.0.2.x86_64                           11/11 
  Verifying  : libsemanage-2.5-11.amzn2.x86_64                             1/11 
  Verifying  : libcap-ng-0.7.5-4.amzn2.0.4.x86_64                          2/11 
  Verifying  : audit-libs-2.8.1-3.amzn2.1.x86_64                           3/11 
  Verifying  : which-2.20-7.amzn2.0.2.x86_64                               4/11 
  Verifying  : xz-5.2.2-1.amzn2.0.3.x86_64                                 5/11 
  Verifying  : ustr-1.0.4-16.amzn2.0.3.x86_64                              6/11 
  Verifying  : gzip-1.5-10.amzn2.0.1.x86_64                                7/11 
  Verifying  : xz-libs-5.2.2-1.amzn2.0.3.x86_64                            8/11 
  Verifying  : 2:tar-1.26-35.amzn2.0.4.x86_64                              9/11 
  Verifying  : 2:shadow-utils-4.1.5.1-24.amzn2.0.3.x86_64                 10/11 
  Verifying  : xz-libs-5.2.2-1.amzn2.0.2.x86_64                           11/11 

Installed:
  gzip.x86_64 0:1.5-10.amzn2.0.1   shadow-utils.x86_64 2:4.1.5.1-24.amzn2.0.3  
  tar.x86_64 2:1.26-35.amzn2.0.4   which.x86_64 0:2.20-7.amzn2.0.2             
  xz.x86_64 0:5.2.2-1.amzn2.0.3   

Dependency Installed:
  audit-libs.x86_64 0:2.8.1-3.amzn2.1    libcap-ng.x86_64 0:0.7.5-4.amzn2.0.4   
  libsemanage.x86_64 0:2.5-11.amzn2      ustr.x86_64 0:1.0.4-16.amzn2.0.3       

Dependency Updated:
  xz-libs.x86_64 0:5.2.2-1.amzn2.0.3                                            

Complete!
+ yum clean all
Loaded plugins: ovl, priorities
Cleaning repos: AmazonCorretto amzn2-core
Cleaning up everything
Maybe you want: rm -rf /var/cache/yum, to also free up space taken by orphaned data from disabled or removed repos
+ export GNUPGHOME=/jetty-keys
+ GNUPGHOME=/jetty-keys
+ mkdir -p /jetty-keys
+ for key in '$JETTY_GPG_KEYS'
+ gpg --batch --keyserver hkps://keyserver.ubuntu.com --recv-keys AED5EE6C45D0FE8D5D1B164F27DED4BF6216DB8F
gpg: keyring `/jetty-keys/secring.gpg' created
gpg: keyring `/jetty-keys/pubring.gpg' created
gpg: requesting key 6216DB8F from hkps server keyserver.ubuntu.com
gpg: /jetty-keys/trustdb.gpg: trustdb created
gpg: key 6216DB8F: public key "Jan Bartel <[email protected]>" imported
gpg: no ultimately trusted keys found
gpg: Total number processed: 1
gpg:               imported: 1
+ for key in '$JETTY_GPG_KEYS'
+ gpg --batch --keyserver hkps://keyserver.ubuntu.com --recv-keys 2A684B57436A81FA8706B53C61C3351A438A3B7D
gpg: requesting key 438A3B7D from hkps server keyserver.ubuntu.com
gpg: key 438A3B7D: public key "Jesse McConnell (master) <[email protected]>" imported
gpg: no ultimately trusted keys found
gpg: Total number processed: 1
gpg:               imported: 1  (RSA: 1)
+ for key in '$JETTY_GPG_KEYS'
+ gpg --batch --keyserver hkps://keyserver.ubuntu.com --recv-keys 5989BAF76217B843D66BE55B2D0E1FB8FE4B68B4
gpg: requesting key FE4B68B4 from hkps server keyserver.ubuntu.com
gpg: key FE4B68B4: public key "Joakim Erdfelt <[email protected]>" imported
gpg: Total number processed: 1
gpg:               imported: 1  (RSA: 1)
+ for key in '$JETTY_GPG_KEYS'
+ gpg --batch --keyserver hkps://keyserver.ubuntu.com --recv-keys B59B67FD7904984367F931800818D9D68FB67BAC
gpg: requesting key 8FB67BAC from hkps server keyserver.ubuntu.com
gpg: key 8FB67BAC: public key "Joakim Erdfelt <[email protected]>" imported
gpg: Total number processed: 1
gpg:               imported: 1
+ for key in '$JETTY_GPG_KEYS'
+ gpg --batch --keyserver hkps://keyserver.ubuntu.com --recv-keys BFBB21C246D7776836287A48A04E0C74ABB35FEA
gpg: requesting key ABB35FEA from hkps server keyserver.ubuntu.com
gpg: key ABB35FEA: public key "Joakim Erdfelt <[email protected]>" imported
gpg: no ultimately trusted keys found
gpg: Total number processed: 1
gpg:               imported: 1  (RSA: 1)
+ for key in '$JETTY_GPG_KEYS'
+ gpg --batch --keyserver hkps://keyserver.ubuntu.com --recv-keys 8B096546B1A8F02656B15D3B1677D141BCF3584D
gpg: requesting key BCF3584D from hkps server keyserver.ubuntu.com
gpg: key BCF3584D: public key "Simone Bordet <[email protected]>" imported
gpg: no ultimately trusted keys found
gpg: Total number processed: 1
gpg:               imported: 1  (RSA: 1)
+ for key in '$JETTY_GPG_KEYS'
+ gpg --batch --keyserver hkps://keyserver.ubuntu.com --recv-keys F254B35617DC255D9344BCFA873A8E86B4372146
gpg: requesting key B4372146 from hkps server keyserver.ubuntu.com
gpg: key B4372146: public key "Olivier Lamy <[email protected]>" imported
gpg: no ultimately trusted keys found
gpg: Total number processed: 1
gpg:               imported: 1
+ for key in '$JETTY_GPG_KEYS'
+ gpg --batch --keyserver hkps://keyserver.ubuntu.com --recv-keys E22488CC94F63E3FC928536C4241C08270D999C3
gpg: requesting key 70D999C3 from hkps server keyserver.ubuntu.com
gpg: key 70D999C3: public key "Ludovic Orban <[email protected]>" imported
gpg: Total number processed: 1
gpg:               imported: 1
+ mkdir -p /usr/local/jetty
+ cd /usr/local/jetty
+ curl -SL https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-home/10.0.24/jetty-home-10.0.24.tar.gz -o jetty.tar.gz
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100 10.5M  100 10.5M    0     0  49.2M      0 --:--:-- --:--:-- --:--:-- 49.4M
+ curl -SL https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-home/10.0.24/jetty-home-10.0.24.tar.gz.asc -o jetty.tar.gz.asc
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100   870  100   870    0     0  10247      0 --:--:-- --:--:-- --:--:-- 10357
+ gpg --batch --verify jetty.tar.gz.asc jetty.tar.gz
gpg: Signature made Mon Aug 26 18:04:06 2024 UTC using RSA key ID FE4B68B4
gpg: Good signature from "Joakim Erdfelt <[email protected]>"
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 5989 BAF7 6217 B843 D66B  E55B 2D0E 1FB8 FE4B 68B4
+ tar -xvf jetty.tar.gz --strip-components=1
jetty-home-10.0.24/lib/
jetty-home-10.0.24/lib/websocket/
jetty-home-10.0.24/lib/annotations/
jetty-home-10.0.24/lib/setuid/
jetty-home-10.0.24/lib/http3/
jetty-home-10.0.24/lib/jaspi/
jetty-home-10.0.24/lib/apache-jstl/
jetty-home-10.0.24/lib/http2/
jetty-home-10.0.24/lib/apache-jsp/
jetty-home-10.0.24/lib/logging/
jetty-home-10.0.24/lib/fcgi/
jetty-home-10.0.24/etc/
jetty-home-10.0.24/etc/jaspi/
jetty-home-10.0.24/etc/sessions/
jetty-home-10.0.24/etc/sessions/mongo/
jetty-home-10.0.24/etc/sessions/infinispan/
jetty-home-10.0.24/etc/sessions/jdbc/
jetty-home-10.0.24/etc/sessions/gcloud/
jetty-home-10.0.24/etc/sessions/hazelcast/
jetty-home-10.0.24/etc/sessions/file/
jetty-home-10.0.24/etc/sessions/session-data-cache/
jetty-home-10.0.24/etc/cdi/
jetty-home-10.0.24/bin/
jetty-home-10.0.24/modules/
jetty-home-10.0.24/modules/hawtio/
jetty-home-10.0.24/modules/openid/
jetty-home-10.0.24/modules/jamon/
jetty-home-10.0.24/modules/sessions/
jetty-home-10.0.24/modules/sessions/mongo/
jetty-home-10.0.24/modules/sessions/infinispan/
jetty-home-10.0.24/modules/sessions/infinispan/embedded/
jetty-home-10.0.24/modules/sessions/infinispan/remote/
jetty-home-10.0.24/modules/sessions/infinispan/remote/resources/
jetty-home-10.0.24/modules/sessions/jdbc/
jetty-home-10.0.24/modules/sessions/session-data-cache/
jetty-home-10.0.24/modules/gcloud/
jetty-home-10.0.24/modules/inetaccess/
jetty-home-10.0.24/modules/demo.d/
jetty-home-10.0.24/modules/demo.d/root/
jetty-home-10.0.24/modules/demo.d/root/images/
jetty-home-10.0.24/modules/rewrite/
jetty-home-10.0.24/modules/jolokia/
jetty-home-10.0.24/modules/jetty-quickstart.d/
jetty-home-10.0.24/modules/conscrypt/
jetty-home-10.0.24/modules/jmx.d/
jetty-home-10.0.24/modules/global-webapp-common.d/
jetty-home-10.0.24/modules/logging/
jetty-home-10.0.24/modules/logging/log4j1/
jetty-home-10.0.24/modules/logging/log4j1/resources/
jetty-home-10.0.24/modules/logging/log4j2/
jetty-home-10.0.24/modules/logging/log4j2/resources/
jetty-home-10.0.24/modules/logging/jetty/
jetty-home-10.0.24/modules/logging/jetty/resources/
jetty-home-10.0.24/modules/logging/logback/
jetty-home-10.0.24/modules/logging/logback/resources/
jetty-home-10.0.24/modules/logging/jul/
jetty-home-10.0.24/modules/logging/jul/resources/
jetty-home-10.0.24/README.adoc
jetty-home-10.0.24/lib/websocket/websocket-core-common-10.0.24.jar
jetty-home-10.0.24/lib/websocket/websocket-jetty-api-10.0.24.jar
jetty-home-10.0.24/lib/websocket/websocket-jetty-server-10.0.24.jar
jetty-home-10.0.24/lib/websocket/websocket-core-server-10.0.24.jar
jetty-home-10.0.24/lib/websocket/websocket-javax-client-10.0.24.jar
jetty-home-10.0.24/lib/websocket/websocket-javax-common-10.0.24.jar
jetty-home-10.0.24/lib/websocket/websocket-core-client-10.0.24.jar
jetty-home-10.0.24/lib/websocket/websocket-jetty-client-10.0.24.jar
jetty-home-10.0.24/lib/websocket/websocket-jetty-common-10.0.24.jar
jetty-home-10.0.24/lib/websocket/websocket-servlet-10.0.24.jar
jetty-home-10.0.24/lib/websocket/websocket-javax-server-10.0.24.jar
jetty-home-10.0.24/lib/websocket/jetty-javax-websocket-api-1.1.2.jar
jetty-home-10.0.24/lib/jetty-security-10.0.24.jar
jetty-home-10.0.24/lib/jetty-nosql-10.0.24.jar
jetty-home-10.0.24/lib/jetty-gcloud-session-manager-10.0.24.jar
jetty-home-10.0.24/lib/annotations/asm-tree-9.7.jar
jetty-home-10.0.24/lib/annotations/asm-9.7.jar
jetty-home-10.0.24/lib/annotations/asm-analysis-9.7.jar
jetty-home-10.0.24/lib/annotations/asm-commons-9.7.jar
jetty-home-10.0.24/lib/annotations/jakarta.annotation-api-1.3.5.jar
jetty-home-10.0.24/lib/jetty-deploy-10.0.24.jar
jetty-home-10.0.24/lib/setuid/libsetuid-osx.so
jetty-home-10.0.24/lib/setuid/jetty-setuid-java-1.0.4.jar
jetty-home-10.0.24/lib/setuid/libsetuid-linux.so
jetty-home-10.0.24/lib/http3/http3-server-10.0.24.jar
jetty-home-10.0.24/lib/http3/quic-server-10.0.24.jar
jetty-home-10.0.24/lib/http3/http3-qpack-10.0.24.jar
jetty-home-10.0.24/lib/http3/quic-common-10.0.24.jar
jetty-home-10.0.24/lib/http3/http3-common-10.0.24.jar
jetty-home-10.0.24/lib/http3/quic-quiche-jna-10.0.24.jar
jetty-home-10.0.24/lib/http3/quic-quiche-common-10.0.24.jar
jetty-home-10.0.24/lib/jetty-servlets-10.0.24.jar
jetty-home-10.0.24/lib/jetty-plus-10.0.24.jar
jetty-home-10.0.24/lib/infinispan-remote-query-10.0.24.jar
jetty-home-10.0.24/lib/jaspi/jakarta.security.auth.message-api-1.1.3.jar
jetty-home-10.0.24/lib/jetty-proxy-10.0.24.jar
jetty-home-10.0.24/lib/jetty-servlet-10.0.24.jar
jetty-home-10.0.24/lib/jetty-server-10.0.24.jar
jetty-home-10.0.24/lib/jetty-jaas-10.0.24.jar
jetty-home-10.0.24/lib/apache-jstl/org.apache.taglibs.taglibs-standard-spec-1.2.5.jar
jetty-home-10.0.24/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar
jetty-home-10.0.24/lib/jetty-client-10.0.24.jar
jetty-home-10.0.24/lib/jetty-alpn-conscrypt-server-10.0.24.jar
jetty-home-10.0.24/lib/jetty-jaspi-10.0.24.jar
jetty-home-10.0.24/lib/jetty-unixdomain-server-10.0.24.jar
jetty-home-10.0.24/lib/jakarta.transaction-api-1.3.3.jar
jetty-home-10.0.24/lib/jetty-alpn-server-10.0.24.jar
jetty-home-10.0.24/lib/jetty-unixsocket-common-10.0.24.jar
jetty-home-10.0.24/lib/jetty-annotations-10.0.24.jar
jetty-home-10.0.24/lib/jetty-jndi-10.0.24.jar
jetty-home-10.0.24/lib/jetty-openid-10.0.24.jar
jetty-home-10.0.24/lib/http2/http2-server-10.0.24.jar
jetty-home-10.0.24/lib/http2/http2-hpack-10.0.24.jar
jetty-home-10.0.24/lib/http2/http2-common-10.0.24.jar
jetty-home-10.0.24/lib/apache-jsp/org.mortbay.jasper.apache-jsp-9.0.90.jar
jetty-home-10.0.24/lib/apache-jsp/org.mortbay.jasper.apache-el-9.0.90.jar
jetty-home-10.0.24/lib/apache-jsp/org.eclipse.jetty.apache-jsp-10.0.24.jar
jetty-home-10.0.24/lib/apache-jsp/org.eclipse.jdt.ecj-3.33.0.jar
jetty-home-10.0.24/lib/jetty-xml-10.0.24.jar
jetty-home-10.0.24/lib/jetty-unixsocket-server-10.0.24.jar
jetty-home-10.0.24/lib/jetty-servlet-api-4.0.6.jar
jetty-home-10.0.24/lib/jetty-alpn-client-10.0.24.jar
jetty-home-10.0.24/lib/jetty-http-10.0.24.jar
jetty-home-10.0.24/lib/jetty-quickstart-10.0.24.jar
jetty-home-10.0.24/lib/jetty-alpn-java-server-10.0.24.jar
jetty-home-10.0.24/lib/jetty-memcached-sessions-10.0.24.jar
jetty-home-10.0.24/lib/jetty-util-10.0.24.jar
jetty-home-10.0.24/lib/jetty-util-ajax-10.0.24.jar
jetty-home-10.0.24/lib/jetty-keystore-10.0.24.jar
jetty-home-10.0.24/lib/jetty-jmx-10.0.24.jar
jetty-home-10.0.24/lib/jetty-rewrite-10.0.24.jar
jetty-home-10.0.24/lib/jetty-webapp-10.0.24.jar
jetty-home-10.0.24/lib/jetty-hazelcast-10.0.24.jar
jetty-home-10.0.24/lib/logging/jetty-slf4j-impl-10.0.24.jar
jetty-home-10.0.24/lib/logging/slf4j-api-2.0.9.jar
jetty-home-10.0.24/lib/fcgi/fcgi-client-10.0.24.jar
jetty-home-10.0.24/lib/fcgi/fcgi-server-10.0.24.jar
jetty-home-10.0.24/lib/infinispan-embedded-query-10.0.24.jar
jetty-home-10.0.24/lib/jetty-io-10.0.24.jar
jetty-home-10.0.24/lib/infinispan-common-10.0.24.jar
jetty-home-10.0.24/lib/jetty-cdi-10.0.24.jar
jetty-home-10.0.24/NOTICE.txt
jetty-home-10.0.24/etc/jetty-unixsocket-http2c.xml
jetty-home-10.0.24/etc/jetty-bytebufferpool-logarithmic.xml
jetty-home-10.0.24/etc/jetty-ssl-context.xml
jetty-home-10.0.24/etc/jetty-unixsocket-secure.xml
jetty-home-10.0.24/etc/jetty-gzip.xml
jetty-home-10.0.24/etc/jetty-proxy.xml
jetty-home-10.0.24/etc/jetty-jmx-remote.xml
jetty-home-10.0.24/etc/jetty-rewrite-customizer.xml
jetty-home-10.0.24/etc/console-capture.xml
jetty-home-10.0.24/etc/jetty-deploy.xml
jetty-home-10.0.24/etc/jetty-rewrite.xml
jetty-home-10.0.24/etc/jetty-web-decorate.xml
jetty-home-10.0.24/etc/jaspi/jaspi-default.xml
jetty-home-10.0.24/etc/jaspi/jaspi-authmoduleconfig.xml
jetty-home-10.0.24/etc/jaspi/jaspi-demo.xml
jetty-home-10.0.24/etc/jetty.xml
jetty-home-10.0.24/etc/rewrite-compactpath.xml
jetty-home-10.0.24/etc/jetty-http-forwarded.xml
jetty-home-10.0.24/etc/jetty-stats.xml
jetty-home-10.0.24/etc/sessions/mongo/session-store-by-uri.xml
jetty-home-10.0.24/etc/sessions/mongo/session-store-by-address.xml
jetty-home-10.0.24/etc/sessions/infinispan/infinispan-remote-query.xml
jetty-home-10.0.24/etc/sessions/infinispan/infinispan-embedded.xml
jetty-home-10.0.24/etc/sessions/infinispan/infinispan-common.xml
jetty-home-10.0.24/etc/sessions/infinispan/infinispan-embedded-query.xml
jetty-home-10.0.24/etc/sessions/infinispan/infinispan-remote.xml
jetty-home-10.0.24/etc/sessions/jdbc/session-store.xml
jetty-home-10.0.24/etc/sessions/jdbc/datasource.xml
jetty-home-10.0.24/etc/sessions/jdbc/driver.xml
jetty-home-10.0.24/etc/sessions/gcloud/session-store.xml
jetty-home-10.0.24/etc/sessions/id-manager.xml
jetty-home-10.0.24/etc/sessions/hazelcast/default.xml
jetty-home-10.0.24/etc/sessions/hazelcast/remote.xml
jetty-home-10.0.24/etc/sessions/file/session-store.xml
jetty-home-10.0.24/etc/sessions/session-data-cache/session-caching-store.xml
jetty-home-10.0.24/etc/sessions/session-data-cache/xmemcached.xml
jetty-home-10.0.24/etc/sessions/session-cache-hash.xml
jetty-home-10.0.24/etc/sessions/session-cache-null.xml
jetty-home-10.0.24/etc/jetty-unixsocket-http.xml
jetty-home-10.0.24/etc/jetty-unixsocket-forwarded.xml
jetty-home-10.0.24/etc/jetty.conf
jetty-home-10.0.24/etc/jetty-jaas.xml
jetty-home-10.0.24/etc/jetty-quickstart.xml
jetty-home-10.0.24/etc/jetty-threadpool-virtual.xml
jetty-home-10.0.24/etc/jetty-test-keystore.xml
jetty-home-10.0.24/etc/jetty-openid.xml
jetty-home-10.0.24/etc/jetty-decorate.xml
jetty-home-10.0.24/etc/jetty-requestlog.xml
jetty-home-10.0.24/etc/jetty-alpn.xml
jetty-home-10.0.24/etc/jetty-unixsocket.xml
jetty-home-10.0.24/etc/jetty-unixsocket-proxy-protocol.xml
jetty-home-10.0.24/etc/jetty-pid.xml
jetty-home-10.0.24/etc/jetty-halt.xml
jetty-home-10.0.24/etc/jetty-proxy-protocol-ssl.xml
jetty-home-10.0.24/etc/jetty-http2.xml
jetty-home-10.0.24/etc/jetty-debuglog.xml
jetty-home-10.0.24/etc/jetty-http.xml
jetty-home-10.0.24/etc/cdi/jetty-cdi.xml
jetty-home-10.0.24/etc/jetty-debug.xml
jetty-home-10.0.24/etc/jetty-jmx.xml
jetty-home-10.0.24/etc/jetty-threadlimit.xml
jetty-home-10.0.24/etc/jdbcRealm.properties
jetty-home-10.0.24/etc/jetty-stop.xml
Output truncated.

Details

  • Build / Test - JDK11 (3 hr 37 min)
    Error: null