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

Add JAVA SE 23 support for Tomcat and TomEE #6824

Merged
merged 1 commit into from
Dec 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -552,10 +552,10 @@ public Set<String> getSupportedJavaPlatformVersions() {
if (manager.isTomEE()) {
switch (manager.getTomEEVersion()) {
case TOMEE_90:
versions = versionRange(11, 22);
versions = versionRange(11, 23);
break;
case TOMEE_80:
versions = versionRange(8, 22);
versions = versionRange(8, 23);
break;
case TOMEE_71:
case TOMEE_70:
Expand All @@ -572,20 +572,20 @@ public Set<String> getSupportedJavaPlatformVersions() {
} else {
switch (manager.getTomcatVersion()) {
case TOMCAT_110:
versions = versionRange(21, 22);
versions = versionRange(21, 23);
break;
case TOMCAT_101:
versions = versionRange(11, 22);
versions = versionRange(11, 23);
break;
case TOMCAT_100:
case TOMCAT_90:
versions = versionRange(8, 22);
versions = versionRange(8, 23);
break;
case TOMCAT_80:
versions = versionRange(7, 22);
versions = versionRange(7, 23);
break;
case TOMCAT_70:
versions = versionRange(6, 22);
versions = versionRange(6, 23);
break;
case TOMCAT_60:
versions = versionRange(5, 8);
Expand Down
Loading