@@ -19,6 +19,7 @@ import org.jetbrains.changelog.markdownToHTML
1919import org.jetbrains.intellij.platform.gradle.IntelliJPlatformType
2020import org.jetbrains.intellij.platform.gradle.TestFrameworkType
2121import org.jetbrains.intellij.platform.gradle.models.ProductRelease
22+ import org.jetbrains.kotlin.gradle.dsl.JvmTarget
2223import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2324
2425fun properties (key : String ) = project.findProperty(key).toString()
@@ -27,11 +28,11 @@ plugins {
2728 // Java support
2829 id(" java" )
2930 // Kotlin support
30- id(" org.jetbrains.kotlin.jvm" ) version " 2.1 .0"
31+ id(" org.jetbrains.kotlin.jvm" ) version " 2.3 .0"
3132 // Gradle IntelliJ Plugin
32- id(" org.jetbrains.intellij.platform" ) version " 2.6 .0"
33+ id(" org.jetbrains.intellij.platform" ) version " 2.11 .0"
3334 // Gradle Changelog Plugin
34- id(" org.jetbrains.changelog" ) version " 2.2.1 "
35+ id(" org.jetbrains.changelog" ) version " 2.5.0 "
3536 // Gradle Qodana Plugin
3637 id(" org.jetbrains.qodana" ) version " 0.1.13"
3738}
@@ -120,7 +121,7 @@ tasks {
120121 targetCompatibility = it
121122 }
122123 withType<KotlinCompile > {
123- kotlinOptions .jvmTarget = it
124+ compilerOptions .jvmTarget.set( JvmTarget .fromTarget(it))
124125 }
125126 }
126127
@@ -147,15 +148,14 @@ dependencies {
147148 bundledPlugin(" org.jetbrains.kotlin" )
148149 pluginVerifier()
149150 zipSigner()
150- instrumentationTools()
151151
152152 testFramework(TestFrameworkType .Plugin .Java )
153153 }
154154
155- implementation(" io.sentry:sentry:6.32 .0" )
155+ implementation(" io.sentry:sentry:8.31 .0" )
156156
157157 testImplementation(" junit:junit:4.13.2" )
158- testImplementation(" org.assertj:assertj-core:3.27.0 " )
158+ testImplementation(" org.assertj:assertj-core:3.27.7 " )
159159
160160 // NOTE: No Axon dependencies needed at compile time!
161161 // Tests dynamically download JARs from Maven Central and add via PsiTestUtil.
0 commit comments