Skip to content

Commit

Permalink
build: updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Tore Kasper Frederiksen committed Sep 30, 2022
1 parent 6b5789b commit 0989cb5
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,24 +39,24 @@ configurations {
}

dependencies {
runtimeOnly 'ch.qos.logback:logback-classic:[1.2.11, 2)'
runtimeOnly 'ch.qos.logback:logback-classic:1.4.1'
implementation 'org.bouncycastle:bcprov-jdk15on:[1.70,)'
implementation 'org.bouncycastle:bcpkix-jdk15on:[1.70,)'
implementation 'org.apache.logging.log4j:log4j-to-slf4j:[2.17.2, 3)'
testImplementation 'org.junit.jupiter:junit-jupiter-params:[5.8.2, 6)'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-params:[5.8.2, 6)'
testImplementation 'org.junit.jupiter:junit-jupiter-api:[5.8.2, 6)'
intTestImplementation 'org.junit.jupiter:junit-jupiter-api:[5.8.2, 6)'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:[5.8.2, 6)'
intTestRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:[5.8.2, 6)'
implementation 'org.apache.logging.log4j:log4j-to-slf4j:2.19.0'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.9.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
intTestImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
intTestRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
// TODO very obsolete and should be refactored out or updated
implementation 'org.web3j:core:[4,5.0.0)'
implementation 'com.auth0:java-jwt:[3.19.1, 4)'
implementation 'com.auth0:java-jwt:4.0.0'
implementation 'org.json:json:20220320' // To ensure obsolete trulioo code can compile
implementation group: 'com.github.cliftonlabs', name: 'json-simple', version: '[4.0.1, 5)'
implementation group: 'commons-cli', name: 'commons-cli', version: '[1.5.0, 2)'
implementation group: 'com.google.code.gson', name: 'gson', version: '[2.9.0, 3)'
testImplementation 'org.mockito:mockito-inline:[4.5.1, 5)'
implementation 'com.fasterxml.jackson.core:jackson-databind:[2.13.2.2,)'
testImplementation 'org.mockito:mockito-inline:4.8.0'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.4'
implementation group: 'org.java-websocket', name: 'Java-WebSocket', version: '[1.5.2,)'
}

Expand Down

1 comment on commit 0989cb5

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report for src/main/javascript/crypto/

St.
Category Percentage Covered / Total
🟡 Statements 74.29% 2153/2898
🔴 Branches 47.16% 282/598
🟡 Functions 79.21% 381/481
🟡 Lines 74.5% 2112/2835

Test suite run success

56 tests passing in 2 suites.

Report generated by 🧪jest coverage report action from 0989cb5

Please sign in to comment.