Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions WPILibInstaller-Avalonia/ViewModels/InstallPageViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ private async Task ConfigureVsCodeSettings()
JsonNode? name = result["name"];
if (name != null)
{
if (name.ToString().Equals("JavaSE-17", StringComparison.OrdinalIgnoreCase))
if (name.ToString().Equals("JavaSE-21", StringComparison.OrdinalIgnoreCase))
{
result["path"] = Path.Combine(homePath, "jdk");
result["default"] = true;
Expand All @@ -421,7 +421,7 @@ private async Task ConfigureVsCodeSettings()
{
JsonObject javaConfigProp = new JsonObject
{
["name"] = "JavaSE-17",
["name"] = "JavaSE-21",
["path"] = Path.Combine(homePath, "jdk"),
["default"] = true
};
Expand Down
2 changes: 1 addition & 1 deletion scripts/versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ ext.wpilibVersion = gradleRioVersion
ext.gccVersion = '12.2.0'
ext.toolchainGitTag = 'v2025-2'

ext.jdkVersion = '21.0.7+6'
ext.jdkVersion = '21.0.10+7'

ext.advantagescopeGitTag = 'v27.0.0-alpha-3'

Expand Down