We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a26eab3 commit f280bfaCopy full SHA for f280bfa
build.gradle.kts
@@ -81,6 +81,14 @@ configurations.all {
81
}
82
83
84
+listOf("compileClasspath", "runtimeClasspath")
85
+ .map(configurations::named)
86
+ .forEach {
87
+ it.configure {
88
+ exclude("org.jetbrains.kotlin")
89
+ }
90
91
+
92
val rewriteVersion = if (project.hasProperty("releasing")) {
93
"latest.release"
94
} else {
@@ -114,7 +122,7 @@ dependencies {
114
122
115
123
testRuntimeOnly("org.openrewrite:rewrite-java-11:${rewriteVersion}")
116
124
testRuntimeOnly("org.openrewrite:rewrite-java-8:${rewriteVersion}")
117
-
125
+ testRuntimeOnly("com.fasterxml.jackson.module:jackson-module-kotlin:latest.release")
118
126
testRuntimeOnly("commons-logging:commons-logging:1.2")
119
127
testRuntimeOnly("ch.qos.logback:logback-classic:1.2.11")
120
128
0 commit comments