Skip to content

Commit

Permalink
Switch from deprecated Gradle 'compile' configuration to 'implementat…
Browse files Browse the repository at this point in the history
…ion'
  • Loading branch information
PhilipRoman committed Mar 29, 2021
1 parent 9e5b795 commit a25bce4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ publishing {
}

dependencies {
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
testCompile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.25'
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group: 'org.json', name: 'json', version: '20180813'
implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
testImplementation group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.25'
testImplementation group: 'junit', name: 'junit', version: '4.12'
testImplementation group: 'org.json', name: 'json', version: '20180813'
}

0 comments on commit a25bce4

Please sign in to comment.