Skip to content

Commit a25bce4

Browse files
committed
Switch from deprecated Gradle 'compile' configuration to 'implementation'
1 parent 9e5b795 commit a25bce4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ publishing {
3535
}
3636

3737
dependencies {
38-
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
39-
testCompile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.25'
40-
testCompile group: 'junit', name: 'junit', version: '4.12'
41-
testCompile group: 'org.json', name: 'json', version: '20180813'
38+
implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
39+
testImplementation group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.25'
40+
testImplementation group: 'junit', name: 'junit', version: '4.12'
41+
testImplementation group: 'org.json', name: 'json', version: '20180813'
4242
}

0 commit comments

Comments
 (0)