Skip to content

Commit 069e644

Browse files
committed
Merge branch 'igor/build-gradle-update-edc-486' of git://github.com/jetbrains-academy/kotlin-koans-edu into jetbrains-academy-igor/build-gradle-update-edc-486
2 parents 144d20b + 5e5d09a commit 069e644

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Diff for: build.gradle

+5-5
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ subprojects {
3232
}
3333

3434
dependencies {
35-
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
36-
testCompile group: 'junit', name: 'junit', version: '4.12'
35+
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
36+
testImplementation group: 'junit', name: 'junit', version: '4.12'
3737
}
3838

3939
compileKotlin.destinationDir = compileJava.destinationDir
@@ -65,13 +65,13 @@ subprojects {
6565

6666
project(':util') {
6767
dependencies {
68-
compile group: 'junit', name: 'junit', version: '4.12'
68+
implementation group: 'junit', name: 'junit', version: '4.12'
6969
}
7070
}
7171

7272
configure(subprojects.findAll {it.name != 'util'}) {
7373
dependencies {
74-
compile project(':util').sourceSets.main.output
75-
testCompile project(':util').sourceSets.test.output
74+
implementation project(':util').sourceSets.main.output
75+
testImplementation project(':util').sourceSets.test.output
7676
}
7777
}

0 commit comments

Comments
 (0)