File tree 6 files changed +18
-18
lines changed
6 files changed +18
-18
lines changed Original file line number Diff line number Diff line change @@ -165,9 +165,9 @@ configure(subprojects.findAll { !sourceless.contains(it.name) && it.name != core
165
165
apply plugin : " kotlin-${ platform} -conventions"
166
166
dependencies {
167
167
// See comment below for rationale, it will be replaced with "project" dependency
168
- compile project(" :$coreModule " )
168
+ api project(" :$coreModule " )
169
169
// the only way IDEA can resolve test classes
170
- testCompile project(" :$coreModule " ). kotlin. targets. jvm. compilations. test. output. allOutputs
170
+ testImplementation project(" :$coreModule " ). kotlin. targets. jvm. compilations. test. output. allOutputs
171
171
}
172
172
}
173
173
Original file line number Diff line number Diff line change @@ -22,12 +22,12 @@ if (rootProject.extra.get("jvm_ir_enabled") as Boolean) {
22
22
}
23
23
24
24
dependencies {
25
- testCompile (kotlin(" test" ))
25
+ testImplementation (kotlin(" test" ))
26
26
// Workaround to make addSuppressed work in tests
27
- testCompile (kotlin(" reflect" ))
28
- testCompile (kotlin(" stdlib-jdk7" ))
29
- testCompile (kotlin(" test-junit" ))
30
- testCompile (" junit:junit:${version(" junit" )} " )
27
+ testImplementation (kotlin(" reflect" ))
28
+ testImplementation (kotlin(" stdlib-jdk7" ))
29
+ testImplementation (kotlin(" test-junit" ))
30
+ testImplementation (" junit:junit:${version(" junit" )} " )
31
31
}
32
32
33
33
tasks.compileKotlin {
Original file line number Diff line number Diff line change @@ -92,8 +92,8 @@ task coreAgentTest(type: Test) {
92
92
}
93
93
94
94
dependencies {
95
- testCompile " org.jetbrains.kotlin:kotlin-stdlib-jdk8"
96
- testCompile ' junit:junit:4.12'
95
+ testImplementation " org.jetbrains.kotlin:kotlin-stdlib-jdk8"
96
+ testImplementation ' junit:junit:4.12'
97
97
npmTestCompile ' org.apache.commons:commons-compress:1.18'
98
98
npmTestCompile ' com.google.code.gson:gson:2.8.5'
99
99
debugAgentTestCompile project(' :kotlinx-coroutines-core' )
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ dependencies {
23
23
shadowDeps " net.bytebuddy:byte-buddy:$byte_buddy_version "
24
24
shadowDeps " net.bytebuddy:byte-buddy-agent:$byte_buddy_version "
25
25
compileOnly " io.projectreactor.tools:blockhound:$blockhound_version "
26
- testCompile " io.projectreactor.tools:blockhound:$blockhound_version "
26
+ testImplementation " io.projectreactor.tools:blockhound:$blockhound_version "
27
27
api " net.java.dev.jna:jna:$jna_version "
28
28
api " net.java.dev.jna:jna-platform:$jna_version "
29
29
}
Original file line number Diff line number Diff line change 3
3
*/
4
4
5
5
dependencies {
6
- compile project(' :kotlinx-coroutines-reactive' )
7
- testCompile project(' :kotlinx-coroutines-reactive' ). sourceSets. test. output
8
- testCompile " org.reactivestreams:reactive-streams-tck:$reactive_streams_version "
9
- compile " io.reactivex.rxjava2:rxjava:$rxjava2_version "
6
+ api project(' :kotlinx-coroutines-reactive' )
7
+ testImplementation project(' :kotlinx-coroutines-reactive' ). sourceSets. test. output
8
+ testImplementation " org.reactivestreams:reactive-streams-tck:$reactive_streams_version "
9
+ api " io.reactivex.rxjava2:rxjava:$rxjava2_version "
10
10
}
11
11
12
12
tasks. withType(dokka. getClass()) {
Original file line number Diff line number Diff line change 4
4
targetCompatibility = JavaVersion . VERSION_1_8
5
5
6
6
dependencies {
7
- compile project(' :kotlinx-coroutines-reactive' )
8
- testCompile project(' :kotlinx-coroutines-reactive' ). sourceSets. test. output
9
- testCompile " org.reactivestreams:reactive-streams-tck:$reactive_streams_version "
10
- compile " io.reactivex.rxjava3:rxjava:$rxjava3_version "
7
+ api project(' :kotlinx-coroutines-reactive' )
8
+ testImplementation project(' :kotlinx-coroutines-reactive' ). sourceSets. test. output
9
+ testImplementation " org.reactivestreams:reactive-streams-tck:$reactive_streams_version "
10
+ api " io.reactivex.rxjava3:rxjava:$rxjava3_version "
11
11
}
12
12
13
13
compileTestKotlin {
You can’t perform that action at this time.
0 commit comments