Skip to content

Commit

Permalink
hotfix: SET-527 vulnerability fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
john-sobrepena-partior committed Jun 25, 2024
1 parent e161ac5 commit 7e3fa13
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
5 changes: 4 additions & 1 deletion key-vault/hashicorp-key-vault/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ configurations.all {
exclude group: "org.springframework", module: "spring-jcl"
exclude group: "org.springframework", module: "spring-aop"
exclude group: "jakarta.json"
resolutionStrategy {
force 'com.squareup.okio:okio:1.17.6'
}
}

def springVersion = "6.1.6"
Expand All @@ -26,7 +29,7 @@ dependencies {
implementation("org.springframework.vault:spring-vault-core:3.1.1") {
exclude group: "org.springframework",module: "spring-core"
}
implementation "com.squareup.okhttp3:okhttp:4.12.0"
implementation "com.squareup.okhttp3:okhttp:3.14.9"

implementation "org.springframework:spring-orm:$springVersion"
testImplementation "org.springframework:spring-test:$springVersion"
Expand Down
6 changes: 6 additions & 0 deletions security/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ plugins {
id "java-library"
}

configurations.all {
resolutionStrategy {
force 'org.bouncycastle:bcprov-jdk18on:1.78'
}
}

dependencies {
implementation project(":config")
implementation project(":shared")
Expand Down

0 comments on commit 7e3fa13

Please sign in to comment.