This is an automated email from the ASF dual-hosted git repository.

pepness pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/master by this push:
     new 8d05815995 Add JAVA SE 23 support for Tomcat and TomEE
     new 96270d63bc Merge pull request #6824 from pepness/tomcat-se-23
8d05815995 is described below

commit 8d05815995bffa9589e022fb432b22a55a2d847a
Author: José Contreras <[email protected]>
AuthorDate: Sat Dec 9 14:41:36 2023 -0600

    Add JAVA SE 23 support for Tomcat and TomEE
---
 .../netbeans/modules/tomcat5/j2ee/TomcatPlatformImpl.java  | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git 
a/enterprise/tomcat5/src/org/netbeans/modules/tomcat5/j2ee/TomcatPlatformImpl.java
 
b/enterprise/tomcat5/src/org/netbeans/modules/tomcat5/j2ee/TomcatPlatformImpl.java
index f092b006be..fa11460ff5 100644
--- 
a/enterprise/tomcat5/src/org/netbeans/modules/tomcat5/j2ee/TomcatPlatformImpl.java
+++ 
b/enterprise/tomcat5/src/org/netbeans/modules/tomcat5/j2ee/TomcatPlatformImpl.java
@@ -552,10 +552,10 @@ public class TomcatPlatformImpl extends J2eePlatformImpl2 
{
         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:
@@ -572,20 +572,20 @@ public class TomcatPlatformImpl extends J2eePlatformImpl2 
{
         } 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);


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to