Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ buildscript {
dependencies {
implementation 'com.google.guava:guava:31.1-jre'
implementation "joda-time:joda-time:2.12.0"
implementation "org.apache.struts:struts2-core:2.3.8"
implementation "org.apache.struts:struts2-core:6.0.3"
// testImplementation "org.apache.struts:struts2-core:2.3.8"
testImplementation "junit:junit:4.13.2"
}
Expand Down
2 changes: 1 addition & 1 deletion maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<!-- <version>6.0.0</version> -->
<!-- <scope>test</scope> -->
<!-- This breaks CVE scanning, assuming the suppression file doesn't include this version/CVEs ; see ../allow-list.xml -->
<version>2.3.8</version>
<version>6.0.3</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion scala/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ lazy val root = (project in file(".")).
val _ = (g8Test in Test).toTask("").value
},
// Introduces a CVE, leading to a potential build fail
libraryDependencies += "org.apache.struts" % "struts2-core" % "2.3.8",
libraryDependencies += "org.apache.struts" % "struts2-core" % "6.0.3",
dependencyCheckFailBuildOnCVSS := 5,
// Add a suppression file, to test false positive suppression
dependencyCheckSuppressionFiles ++= List(file("../allow-list.xml")),
Expand Down