Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
- Changes slf4j from 1.8.0-beta4 → 1.7.28 for improved compatibility
- Update JUnit from 5.5.0 → 5.5.1
- Update Mockito 2.28.2 → 3.0.0
  • Loading branch information
jamesmudd committed Sep 8, 2019
1 parent 82c87a4 commit 06f92b0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions jhdf/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,18 +39,18 @@ repositories {

dependencies {
// This dependency is exported to consumers, that is to say found on their compile classpath.
implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.8.0-beta4' // Need 1.8 for modules
implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.28'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.9'


// Use JUnit 5 test framework
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.5.0'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: '5.5.0'
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.5.0'
testRuntimeOnly group: 'org.slf4j', name: 'slf4j-simple', version: '1.8.0-beta4'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.5.1'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: '5.5.1'
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.5.1'
testRuntimeOnly group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.28'

// Mocking
testImplementation group: 'org.mockito', name: 'mockito-core', version: '2.28.2'
testImplementation group: 'org.mockito', name: 'mockito-core', version: '3.0.0'
// Matchers
testImplementation group: 'org.hamcrest', name: 'hamcrest', version: '2.1'
}
Expand Down

0 comments on commit 06f92b0

Please sign in to comment.