Skip to content

Commit 776019d

Browse files
authored
fix deprecated gradle configurations (exercism#1880)
1 parent 21f3b3d commit 776019d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

exercises/practice/hangman/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repositories {
1111
}
1212

1313
dependencies {
14-
compile 'io.reactivex.rxjava2:rxjava:2.2.12'
14+
implementation 'io.reactivex.rxjava2:rxjava:2.2.12'
1515

1616
testImplementation "junit:junit:4.13"
1717
testImplementation "org.assertj:assertj-core:3.15.0"

exercises/practice/rest-api/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repositories {
1111
}
1212

1313
dependencies {
14-
compile 'org.json:json:20190722'
14+
implementation 'org.json:json:20190722'
1515
testImplementation "junit:junit:4.13"
1616
testImplementation "org.assertj:assertj-core:3.15.0"
1717
}

0 commit comments

Comments
 (0)