Skip to content

Commit 37a76b7

Browse files
committed
Update supported Java versions for 11.0+
See https://tomcat.apache.org/whichversion.html -- now only Java 17+
1 parent b12e85a commit 37a76b7

File tree

4 files changed

+4
-196
lines changed

4 files changed

+4
-196
lines changed

11.0/jdk11/temurin-jammy/Dockerfile

Lines changed: 0 additions & 149 deletions
This file was deleted.

11.0/jre11/temurin-jammy/Dockerfile

Lines changed: 0 additions & 43 deletions
This file was deleted.

shared.jq

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ def major:
88
def is_supported_java_version(java):
99
# http://tomcat.apache.org/whichversion.html ("Supported Java Versions")
1010
(env.version | tonumber) as $version
11-
| if $version >= 10.1 then
11+
| if $version >= 11.0 then
12+
java >= 17
13+
elif $version >= 10.1 then
1214
java >= 11
1315
elif $version >= 9.0 then
1416
java >= 8

versions.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@
1313
"sha512": "c2d02f2ac1b11122293af7d5ef3cf4dbc1932f19806ba89ea0cd36efcca7701304eef2f3cc03a496fd3a107080a582d3ca3faee207f0bce8b98c266f0a73edc7",
1414
"variants": [
1515
"jdk17/temurin-jammy",
16-
"jre17/temurin-jammy",
17-
"jdk11/temurin-jammy",
18-
"jre11/temurin-jammy"
16+
"jre17/temurin-jammy"
1917
],
2018
"version": "11.0.0-M1"
2119
},

0 commit comments

Comments
 (0)