Skip to content

Commit 6c2c184

Browse files
committed
update build
1 parent d42d090 commit 6c2c184

File tree

1 file changed

+6
-12
lines changed

1 file changed

+6
-12
lines changed

build.gradle.kts

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,9 @@ fun properties(key: String) = project.findProperty(key).toString()
55

66
plugins {
77
id("java")
8-
id("org.jetbrains.kotlin.jvm") version "2.2.21"
9-
id("org.jetbrains.intellij.platform") version "2.10.4"
10-
id("org.jetbrains.changelog") version "1.3.1"
11-
id("org.jetbrains.qodana") version "0.1.13"
8+
id("org.jetbrains.kotlin.jvm") version "2.3.0"
9+
id("org.jetbrains.intellij.platform") version "2.10.5"
10+
id("org.jetbrains.changelog") version "2.5.0"
1211
}
1312

1413
group = properties("pluginGroup")
@@ -79,14 +78,6 @@ changelog {
7978
groups.set(emptyList())
8079
}
8180

82-
// Configure Gradle Qodana Plugin - read more: https://github.com/JetBrains/gradle-qodana-plugin
83-
qodana {
84-
cachePath.set(projectDir.resolve(".qodana").canonicalPath)
85-
reportPath.set(projectDir.resolve("build/reports/inspections").canonicalPath)
86-
saveReport.set(true)
87-
showReport.set(System.getenv("QODANA_SHOW_REPORT")?.toBoolean() ?: false)
88-
}
89-
9081
tasks {
9182
// Set the JVM compatibility versions
9283
properties("javaVersion").let {
@@ -139,5 +130,8 @@ tasks {
139130
useJUnitPlatform {
140131
includeEngines("junit-vintage", "junit-jupiter")
141132
}
133+
134+
// Disable CDS warning about java.system.class.loader
135+
jvmArgs("-Xshare:off")
142136
}
143137
}

0 commit comments

Comments
 (0)