Skip to content

Commit

Permalink
Merge pull request eclipse-tractusx#60 from smartSenseSolutions/featu…
Browse files Browse the repository at this point in the history
…res/java-did-web

fix: Veracode finding for CVE-2023-24998
  • Loading branch information
DominikPinsel authored Jul 18, 2023
2 parents c2540de + 5ac9f2d commit f3ebc75
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ plugins {
id 'org.springframework.boot' version "${springBootVersion}"
id 'io.spring.dependency-management' version "${springDependencyVersion}"
id "jacoco"
id 'project-report'

}

group = "${groupName}"
Expand Down Expand Up @@ -53,6 +55,10 @@ dependencies {
//Added explicitly to mitigate CVE 2022-1471
implementation group: 'org.yaml', name: 'snakeyaml', version: '2.0'

//Added explicitly to mitigate CVE 2023-24998
implementation group: 'commons-fileupload', name: 'commons-fileupload', version: '1.5'


testImplementation 'org.projectlombok:lombok:1.18.28'
runtimeOnly 'org.postgresql:postgresql'
compileOnly 'org.projectlombok:lombok'
Expand Down Expand Up @@ -88,6 +94,10 @@ test {
finalizedBy jacocoTestReport
}

htmlDependencyReport {
projects = project.allprojects
}

jacocoTestReport {
dependsOn test

Expand Down

0 comments on commit f3ebc75

Please sign in to comment.