Skip to content

Commit dac9951

Browse files
Tapchicomaanastasiia.spaseeva
authored and
anastasiia.spaseeva
committed
Replace deprecated '*compile' configurations. (#2574)
They were deprecated long time ago and were removed in Gradle 7
1 parent 420746f commit dac9951

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -156,9 +156,9 @@ configure(subprojects.findAll { !sourceless.contains(it.name) && it.name != core
156156
apply plugin: "kotlin-${platform}-conventions"
157157
dependencies {
158158
// See comment below for rationale, it will be replaced with "project" dependency
159-
compile project(":$coreModule")
159+
api project(":$coreModule")
160160
// the only way IDEA can resolve test classes
161-
testCompile project(":$coreModule").kotlin.targets.jvm.compilations.test.output.allOutputs
161+
testImplementation project(":$coreModule").kotlin.targets.jvm.compilations.test.output.allOutputs
162162
}
163163
}
164164

0 commit comments

Comments
 (0)