@@ -48,15 +48,17 @@ gitVersioning.apply {
4848}
4949
5050dependencies {
51- implementation(" io.github.1c-syntax" , " antlr4" , " 0.3.0-rc.2" )
52- implementation(" commons-io" , " commons-io" , " 2.15.1" )
53- implementation(" org.junit.jupiter" , " junit-jupiter-api" , " 5.11.4" )
54- implementation(" org.assertj" , " assertj-core" , " 3.27.0" )
51+ implementation(" io.github.1c-syntax:antlr4:0.3.0" )
5552
56- testImplementation(" org.junit.jupiter" , " junit-jupiter-engine" , " 5.11.4" )
57- testImplementation(" org.mockito" , " mockito-core" , " 5.21.0" )
53+ implementation(" commons-io:commons-io:2.21.0" )
54+ api(" org.junit.jupiter:junit-jupiter-api:6.0.3" )
55+ api(" org.assertj:assertj-core:3.27.7" )
5856
59- testRuntimeOnly(" org.junit.platform:junit-platform-launcher:1.11.4" )
57+ testImplementation(platform(" org.junit:junit-bom:6.0.3" ))
58+ testImplementation(" org.mockito:mockito-core:5.21.0" )
59+
60+ testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine" )
61+ testRuntimeOnly(" org.junit.platform:junit-platform-launcher" )
6062}
6163
6264tasks.withType<JavaCompile > {
@@ -65,8 +67,8 @@ tasks.withType<JavaCompile> {
6567}
6668
6769java {
68- sourceCompatibility = JavaVersion .VERSION_17
69- targetCompatibility = JavaVersion .VERSION_17
70+ sourceCompatibility = JavaVersion .VERSION_21
71+ targetCompatibility = JavaVersion .VERSION_21
7072 withSourcesJar()
7173 withJavadocJar()
7274}
0 commit comments