File tree 3 files changed +15
-8
lines changed
src/main/java/fi/benjami/code4jvm/config
3 files changed +15
-8
lines changed Original file line number Diff line number Diff line change @@ -7,14 +7,18 @@ repositories {
7
7
}
8
8
9
9
dependencies {
10
- api ' org.ow2.asm:asm:9.2 '
11
- compileOnly ' org.ow2.asm:asm-util:9.2 ' // Used for opt-in debugging
12
- testImplementation ' org.junit.jupiter:junit-jupiter-api:5.9.1 '
13
- testImplementation ' org.junit.jupiter:junit-jupiter-params:5.9.1 '
14
- testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine:5.9.1 '
15
- testImplementation ' org.ow2.asm:asm-util:9.2 '
10
+ api ' org.ow2.asm:asm:9.7 '
11
+ compileOnly ' org.ow2.asm:asm-util:9.7 ' // Used for opt-in debugging
12
+ testImplementation ' org.junit.jupiter:junit-jupiter-api:5.11.0 '
13
+ testImplementation ' org.junit.jupiter:junit-jupiter-params:5.11.0 '
14
+ testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine:5.11.0 '
15
+ testImplementation ' org.ow2.asm:asm-util:9.7 '
16
16
}
17
17
18
18
tasks. named(' test' ) {
19
19
useJUnitPlatform()
20
20
}
21
+
22
+ compileJava {
23
+ options. release = 17
24
+ }
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-8.1.1 -bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.10 -bin.zip
4
4
networkTimeout =10000
5
5
zipStoreBase =GRADLE_USER_HOME
6
6
zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change @@ -19,7 +19,10 @@ public enum JavaVersion {
19
19
JAVA_14 (Opcodes .V14 ),
20
20
JAVA_15 (Opcodes .V15 ),
21
21
JAVA_16 (Opcodes .V16 ),
22
- JAVA_17 (Opcodes .V17 );
22
+ JAVA_17 (Opcodes .V17 ),
23
+ JAVA_18 (Opcodes .V18 ),
24
+ JAVA_19 (Opcodes .V19 ),
25
+ JAVA_21 (Opcodes .V21 );
23
26
24
27
private final int opcode ;
25
28
You can’t perform that action at this time.
0 commit comments