Skip to content

Commit

Permalink
fix: remove few old dependency constrains
Browse files Browse the repository at this point in the history
Closes: XRDDEV-2597
  • Loading branch information
ovidijusnortal committed Feb 21, 2024
1 parent 3a724df commit f04332b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 28 deletions.
24 changes: 0 additions & 24 deletions src/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -133,30 +133,6 @@ configure(subprojects.findAll { !["shared-ui", "ui"].contains(it.name) }) {
dependencies {
//With require constraints we define lowest compliant dependency version (transitive dependencies are incl.)
constraints {
add('implementation', 'com.fasterxml.jackson.core:jackson-databind') {
because("Vulnerability fix regarding CVE-2022-42003")
version {
require("$jacksonBomVersion")
}
}
add('implementation', 'org.yaml:snakeyaml') {
because("Vulnerability fix regarding CVE-2022-25857")
version {
require("$snakeyamlVersion")
}
}
add('implementation', 'org.apache.commons:commons-text') {
because("Vulnerability fix regarding CVE-2022-42889")
version {
require("$commonsTextVersion")
}
}
add('implementation', 'com.fasterxml.woodstox:woodstox-core') {
because("Vulnerability fix regarding CVE-2022-40152")
version {
require("$woodstoxVersion")
}
}
add('implementation', 'io.micrometer:micrometer-tracing-bridge-brave') {
because("Vulnerability fix regarding CVE-2022-47932")
version {
Expand Down
5 changes: 1 addition & 4 deletions src/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,12 @@ mapStructVersion=1.5.5.Final
shadowJarVersion=8.1.1
jacksonBomVersion=2.16.1
jackson-bom.version=${jacksonBomVersion}
snakeyamlVersion=2.2
snakeyaml.version=${snakeyamlVersion}
postgresqlVersion=42.6.1
postgresql.version=${postgresqlVersion}
mockitoVersion=5.7.0
mockito.version=${mockitoVersion}
cxfVersion=3.4.10
xercesVersion=2.12.2
woodstoxVersion=6.4.0
springBootVersion=3.2.2
springDependenciesVersion=1.1.4
springSecurityVersion=6.2.2
Expand Down Expand Up @@ -64,7 +61,7 @@ openApiGeneratorVersion=7.1.0
swaggerParserVersion=2.1.20
hsqldbVersion=2.7.1:jdk8
hsqldb.version=${hsqldbVersion}
commonsTextVersion=1.10.0
commonsTextVersion=1.11.0
commonsCliVersion=1.6.0
commonsCompressVersion=1.26.0
testAutomationFrameworkVersion=0.2.14
Expand Down

0 comments on commit f04332b

Please sign in to comment.