We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4853bdf commit 7cb7329Copy full SHA for 7cb7329
2 files changed
.github/workflows/build.yml
@@ -12,10 +12,10 @@ jobs:
12
runs-on: ubuntu-latest
13
steps:
14
- uses: actions/checkout@v6
15
- - name: Set up JDK 17
+ - name: Set up JDK 21
16
uses: actions/setup-java@v5
17
with:
18
distribution: 'temurin'
19
- java-version: 17
+ java-version: 21
20
- name: Build
21
run: ./gradlew clean build vscodeExtension
build.gradle
@@ -35,8 +35,8 @@ configure(subprojects.findAll { it.name.startsWith('org.xtext') }) {
35
version = '1.0.0-SNAPSHOT'
36
37
java {
38
- sourceCompatibility = JavaVersion.VERSION_17
39
- targetCompatibility = JavaVersion.VERSION_17
+ sourceCompatibility = JavaVersion.VERSION_21
+ targetCompatibility = JavaVersion.VERSION_21
40
}
41
42
configurations.all {
0 commit comments