File tree Expand file tree Collapse file tree 1 file changed +12
-5
lines changed Expand file tree Collapse file tree 1 file changed +12
-5
lines changed Original file line number Diff line number Diff line change 31
31
32
32
kotlin {
33
33
jvmToolchain {
34
- ( this as JavaToolchainSpec ). languageVersion.set(jvmTargetVer)
34
+ languageVersion.set(jvmTargetVer)
35
35
}
36
36
}
37
37
@@ -42,10 +42,17 @@ tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach
42
42
}
43
43
44
44
dependencies {
45
- implementation(" com.github.spotbugs.snom:spotbugs-gradle-plugin:6.0.7 " ) // https://plugins.gradle.org/plugin/com.github.spotbugs
45
+ implementation(" com.github.spotbugs.snom:spotbugs-gradle-plugin:6.1.13 " ) // https://plugins.gradle.org/plugin/com.github.spotbugs
46
46
implementation(" com.diffplug.spotless:spotless-plugin-gradle:7.2.1" ) // https://plugins.gradle.org/plugin/com.diffplug.spotless
47
47
implementation(" gradle.plugin.org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.12.2" ) // https://plugins.gradle.org/plugin/com.github.kt3k.coveralls
48
- implementation(" org.javamodularity:moduleplugin:1.8.12" ) // https://plugins.gradle.org/plugin/org.javamodularity.moduleplugin
49
- implementation(" io.github.gradle-nexus:publish-plugin:1.3.0" ) // https://plugins.gradle.org/plugin/io.github.gradle-nexus.publish-plugin
50
- implementation(" com.gradle.publish:plugin-publish-plugin:1.2.1" ) // https://plugins.gradle.org/plugin/com.gradle.plugin-publish
48
+ implementation(" org.javamodularity:moduleplugin:1.8.15" ) // https://plugins.gradle.org/plugin/org.javamodularity.moduleplugin
49
+ implementation(" io.github.gradle-nexus:publish-plugin:2.0.0" ) // https://plugins.gradle.org/plugin/io.github.gradle-nexus.publish-plugin
50
+ implementation(" com.gradle.publish:plugin-publish-plugin:1.3.1" ) // https://plugins.gradle.org/plugin/com.gradle.plugin-publish
51
+ }
52
+
53
+ configurations.all {
54
+ configurations.all {
55
+ // Coveralls.io plugin brings this in, which breaks the parsing of snapshot metadata
56
+ exclude(group = " xerces" , module = " xercesImpl" )
57
+ }
51
58
}
You can’t perform that action at this time.
0 commit comments