File tree Expand file tree Collapse file tree 1 file changed +6
-12
lines changed
Expand file tree Collapse file tree 1 file changed +6
-12
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,9 @@ fun properties(key: String) = project.findProperty(key).toString()
55
66plugins {
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
1413group = 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-
9081tasks {
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}
You can’t perform that action at this time.
0 commit comments