Skip to content

Commit

Permalink
[PRMT-4323] Attempt to resolve H2 alert.
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-nhs committed Dec 18, 2023
1 parent 92bf89c commit 71be9ff
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ dependencies {
implementation 'org.springdoc:springdoc-openapi-ui:1.6.15'
implementation 'net.logstash.logback:logstash-logback-encoder:6.6'
implementation 'org.bouncycastle:bcpkix-jdk15on:1.70'
implementation 'org.bouncycastle:bcprov-jdk18on:1.77'
implementation 'com.nimbusds:nimbus-jose-jwt:9.37.3'
implementation 'org.jetbrains:annotations:20.1.0'
implementation 'org.json:json:20231013'
Expand All @@ -63,6 +62,16 @@ dependencies {
annotationProcessor 'org.projectlombok:lombok'

testImplementation 'com.github.tomakehurst:wiremock-jre8:2.35.1'

constraints {
implementation('com.h2database:h2') {
version {
strictly ('[2.2, 3[')
prefer ('2.2.220')
}
because 'CVE-2022-45868'
}
}
}

springBoot {
Expand Down

0 comments on commit 71be9ff

Please sign in to comment.