Skip to content

Commit

Permalink
Update dependencies for CVE-2023-3635 (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmyjames authored Sep 27, 2023
2 parents fa0fb90 + f781e42 commit 2e6c4fb
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,15 @@ java {
toolchain {
languageVersion = JavaLanguageVersion.of(8)
}
// Needed because of broken gradle metadata, see https://github.com/google/guava/issues/6612#issuecomment-1614992368
sourceSets.all {
configurations.getByName(runtimeClasspathConfigurationName) {
attributes.attribute(Attribute.of("org.gradle.jvm.environment", String), "standard-jvm")
}
configurations.getByName(compileClasspathConfigurationName) {
attributes.attribute(Attribute.of("org.gradle.jvm.environment", String), "standard-jvm")
}
}
}

compileJava {
Expand All @@ -63,17 +72,17 @@ dependencies {
implementation 'com.google.guava:guava-annotations:r03'
implementation 'commons-codec:commons-codec:1.15'

api 'com.auth0:auth0:1.45.0'
api 'com.auth0:auth0:1.45.1'
api 'com.auth0:java-jwt:3.19.4'
api 'com.auth0:jwks-rsa:0.21.3'
api 'com.auth0:jwks-rsa:0.22.1'

testImplementation 'org.bouncycastle:bcprov-jdk15on:1.64'
testImplementation 'org.hamcrest:java-hamcrest:2.0.0.0'
testImplementation 'org.hamcrest:hamcrest-core:1.3'
testImplementation 'org.mockito:mockito-core:2.8.9'
testImplementation 'org.junit.jupiter:junit-jupiter:5.8.1'
testImplementation 'org.springframework:spring-test:4.3.14.RELEASE'
testImplementation 'com.squareup.okhttp3:okhttp:4.9.3'
testImplementation 'com.squareup.okhttp3:okhttp:4.11.0'
}

// Creates a version.txt file containing the current version of the SDK.
Expand Down

0 comments on commit 2e6c4fb

Please sign in to comment.