Skip to content

Commit

Permalink
testCompileをtestImplementationに変更 #19
Browse files Browse the repository at this point in the history
  • Loading branch information
jiro4989 committed Nov 24, 2021
1 parent c8133ce commit ef68d54
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ dependencies {
implementation 'com.google.guava:guava:28.2-jre'

// Use JUnit test framework
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.6.2'
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.6.2'
testCompile group: 'org.junit.platform', name: 'junit-platform-launcher', version: '1.6.2'
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: '5.6.2'
testCompile "org.testfx:testfx-junit5:4.0.16-alpha"
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.6.2'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.6.2'
testImplementation group: 'org.junit.platform', name: 'junit-platform-launcher', version: '1.6.2'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: '5.6.2'
testImplementation "org.testfx:testfx-junit5:4.0.16-alpha"

// JavaFX
implementation "org.openjfx:javafx-fxml:$javafx_version"
Expand Down

0 comments on commit ef68d54

Please sign in to comment.