File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -81,6 +81,14 @@ configurations.all {
81
81
}
82
82
}
83
83
84
+ listOf (" compileClasspath" , " runtimeClasspath" )
85
+ .map(configurations::named)
86
+ .forEach {
87
+ it.configure {
88
+ exclude(" org.jetbrains.kotlin" )
89
+ }
90
+ }
91
+
84
92
val rewriteVersion = if (project.hasProperty(" releasing" )) {
85
93
" latest.release"
86
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
You can’t perform that action at this time.
0 commit comments