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

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


The following commit(s) were added to refs/heads/master by this push:
     new d5945f0  NetBeans needs JDK 21
d5945f0 is described below

commit d5945f04845169580afd3713d1c18b63045afb11
Author: Tomas Hurka <[email protected]>
AuthorDate: Sun Aug 23 11:31:02 2026 +0200

    NetBeans needs JDK 21
---
 vscode/README.md        | 2 +-
 vscode/src/extension.ts | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/vscode/README.md b/vscode/README.md
index 3f5561b..6230c26 100644
--- a/vscode/README.md
+++ b/vscode/README.md
@@ -26,7 +26,7 @@
 
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/apache/netbeans-vscode/blob/master/LICENSE)
 
 
-This is [Apache NetBeans](http://netbeans.org) Language Server extension for 
VS Code. Use it to get all the _goodies of NetBeans_ via the VS Code user 
interface! Runs on __JDK17__ and all newer versions.
+This is [Apache NetBeans](http://netbeans.org) Language Server extension for 
VS Code. Use it to get all the _goodies of NetBeans_ via the VS Code user 
interface! Runs on __JDK21__ and all newer versions.
 
 Apache NetBeans Language Server brings full featured Java development 
(edit-compile-debug & test cycle) for Maven and Gradle projects to VSCode. As 
well as other features.
 ## Getting Started
diff --git a/vscode/src/extension.ts b/vscode/src/extension.ts
index 14294c2..1889b63 100644
--- a/vscode/src/extension.ts
+++ b/vscode/src/extension.ts
@@ -74,7 +74,7 @@ const DATABASE: string = 'Database';
 export const listeners = new Map<string, string[]>();
 export let client: Promise<NbLanguageClient>;
 export let clientRuntimeJDK : string | null = null;
-export const MINIMAL_JDK_VERSION = 17;
+export const MINIMAL_JDK_VERSION = 21;
 export const TEST_PROGRESS_EVENT: string = "testProgress";
 const TEST_ADAPTER_CREATED_EVENT: string = "testAdapterCreated";
 let testAdapter: NbTestAdapter | undefined;


---------------------------------------------------------------------
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