@@ -3,7 +3,7 @@ import org.jetbrains.grammarkit.tasks.GenerateParserTask
33
44plugins {
55 id(" java" )
6- id(" org.jetbrains.kotlin.jvm" ) version " 1.9.25 "
6+ id(" org.jetbrains.kotlin.jvm" ) version " 2.2.21 "
77 id(" org.jetbrains.intellij.platform" ) version " 2.9.0"
88 id(" org.jetbrains.grammarkit" ) version " 2022.3.2.2"
99}
@@ -47,17 +47,19 @@ sourceSets {
4747// Configure IntelliJ Platform Dependencies
4848dependencies {
4949 intellijPlatform {
50- intellijIdeaCommunity(" 2024.2.5" )
50+ intellijIdea(" 2024.2.5" ) {
51+ type.set(org.jetbrains.intellij.platform.gradle.IntelliJPlatformType .IntellijIdeaCommunity )
52+ }
5153 bundledPlugin(" com.intellij.java" )
5254
5355 pluginVerifier()
5456 zipSigner()
5557 }
5658
57- testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:5.13.4 " )
59+ testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:6.0.0 " )
5860 testRuntimeOnly(" org.junit.platform:junit-platform-launcher:6.0.0" )
59- testImplementation(" org.junit.jupiter:junit-jupiter-api:5.13.4 " )
60- testImplementation(" org.junit.jupiter:junit-jupiter-params:5.13.4 " )
61+ testImplementation(" org.junit.jupiter:junit-jupiter-api:6.0.0 " )
62+ testImplementation(" org.junit.jupiter:junit-jupiter-params:6.0.0 " )
6163 testImplementation(" org.mockito:mockito-core:5.20.0" )
6264 testImplementation(" org.mockito:mockito-junit-jupiter:5.20.0" )
6365}
@@ -111,8 +113,8 @@ tasks {
111113 withType< org.jetbrains.kotlin.gradle.tasks.KotlinCompile > {
112114 compilerOptions {
113115 jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget .JVM_21
114- languageVersion = org.jetbrains.kotlin.gradle.dsl.KotlinVersion .KOTLIN_1_9
115- apiVersion = org.jetbrains.kotlin.gradle.dsl.KotlinVersion .KOTLIN_1_9
116+ languageVersion = org.jetbrains.kotlin.gradle.dsl.KotlinVersion .KOTLIN_2_0
117+ apiVersion = org.jetbrains.kotlin.gradle.dsl.KotlinVersion .KOTLIN_2_0
116118 }
117119 dependsOn(generatePhelLexer, generatePhelParser)
118120 }
@@ -141,8 +143,8 @@ tasks {
141143
142144 pluginVerification {
143145 ides {
144- ide (" IC" , " 2024.2.5" )
145- ide (" IC" , " 2024.3.1" )
146+ create (" IC" , " 2024.2.5" )
147+ create (" IC" , " 2024.3.1" )
146148 }
147149 }
148150
0 commit comments