Skip to content

Commit 6468316

Browse files
committed
Update jdt to 1.51.0
1 parent d68ec49 commit 6468316

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
if: matrix.benchmark == false
8282
uses: actions/setup-java@v4
8383
with:
84-
java-version: 17
84+
java-version: 21
8585
distribution: 'adopt'
8686

8787
- name: Install Python
@@ -243,7 +243,7 @@ jobs:
243243
# if: matrix.benchmark == false
244244
# uses: actions/setup-java@v4
245245
# with:
246-
# java-version: 17
246+
# java-version: 21
247247
# distribution: 'temurin'
248248
# - name: Install Python
249249
# uses: actions/setup-python@v5

build.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,11 @@ def Exit( self ):
8989
)$
9090
"""
9191

92-
JDTLS_MILESTONE = '1.40.0'
93-
JDTLS_BUILD_STAMP = '202409261450'
92+
JDTLS_REQUIRED_JAVA_VERSION = 21
93+
JDTLS_MILESTONE = '1.51.0'
94+
JDTLS_BUILD_STAMP = '202510022025'
9495
JDTLS_SHA256 = (
95-
'7416fc62befa450e32f06ec2b503f2eec5f22f0b1cc12f7b8ee5112bf671cf11'
96+
'8a59372117881bf5bdc0220f2254472846b88137c058f344b00a7d41427745a1'
9697
)
9798

9899
DEFAULT_RUST_TOOLCHAIN = 'nightly-2024-12-12'
@@ -1110,7 +1111,7 @@ def Print( *args, **kwargs ):
11101111
sys.stdout.write( 'Installing jdt.ls for Java support...' )
11111112
sys.stdout.flush()
11121113

1113-
CheckJavaVersion( 17 )
1114+
CheckJavaVersion( JDTLS_REQUIRED_JAVA_VERSION )
11141115

11151116
TARGET = p.join( DIR_OF_THIRD_PARTY, 'eclipse.jdt.ls', 'target', )
11161117
REPOSITORY = p.join( TARGET, 'repository' )

0 commit comments

Comments
 (0)