Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name := "dependency-check-repro"

version := "0.1"

scalaVersion := "2.11.12"
scalaVersion := "2.13.17"


lazy val root = (project in file("."))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name := "dependency-check-repro"

version := "0.1"

scalaVersion := "2.11.12"
scalaVersion := "2.13.17"

dependencyCheckAutoUpdate := Some(false)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
lazy val commonSettings = Seq(
organization := "net.vonbuchholtz",
version := "0.1.0",
scalaVersion := "2.10.7"
scalaVersion := "2.13.17"
)

lazy val root = (project in file("."))
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-dependency-check/anyProject/build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
lazy val commonSettings = Seq(
organization := "net.vonbuchholtz",
version := "0.1.0",
scalaVersion := "2.10.7"
scalaVersion := "2.13.17"
)

lazy val root = (project in file("."))
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version := "0.1"
lazy val root = project in file(".")
scalaVersion := "2.10.7"
scalaVersion := "2.13.17"

libraryDependencies ++= Seq(
"org.eclipse.jetty" % "jetty-runner" % "9.2.4.v20141103"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version := "0.1"
lazy val root = project in file(".")
scalaVersion := "2.10.7"
scalaVersion := "2.13.17"

libraryDependencies ++= Seq(
"org.eclipse.jetty" % "jetty-runner" % "9.2.4.v20141103"
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-dependency-check/check/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version := "0.1"
lazy val root = project in file(".")
scalaVersion := "2.10.7"
scalaVersion := "2.13.17"

libraryDependencies ++= Seq(
"commons-beanutils" % "commons-beanutils" % "1.9.1" % "test",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
lazy val commonSettings = Seq(
organization := "net.vonbuchholtz",
version := "0.1.0",
scalaVersion := "2.10.7"
scalaVersion := "2.13.17"
)

lazy val root = (project in file("."))
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-dependency-check/checkScanSet/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version := "0.1"
lazy val root = project in file(".")
scalaVersion := "2.10.7"
scalaVersion := "2.13.17"

dependencyCheckFailBuildOnCVSS := 0
dependencyCheckScanSet := Seq(baseDirectory.value / "src/main/customDir")
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import sbt.File

version := "0.1"
lazy val root = project in file(".")
scalaVersion := "2.10.7"
scalaVersion := "2.13.17"

dependencyCheckDataDirectory := Some(new File(baseDirectory.value + "/tmp/sbt-dependency-check"))

2 changes: 1 addition & 1 deletion src/sbt-test/sbt-dependency-check/formatsSetting/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version := "0.1"
lazy val root = project in file(".")
scalaVersion := "2.10.7"
scalaVersion := "2.13.17"

libraryDependencies ++= Seq(
"commons-beanutils" % "commons-beanutils" % "1.9.1" % "test",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

name := "global-and-project-settings"
version := "0.1"
scalaVersion := "2.11.12"
scalaVersion := "2.13.17"

Global / dependencyCheckCvePassword := Some("Global")
Global / dependencyCheckCveUser := Some("Global")
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-dependency-check/listSettings/build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
version := "0.1"
lazy val root = project in file(".")
scalaVersion := "2.10.7"
scalaVersion := "2.13.17"

dependencyCheckSuppressionFiles := Seq(baseDirectory.value / "src/main/resources", baseDirectory.value / "src/app/")
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version := "0.1"
lazy val root = project in file(".")
scalaVersion := "2.10.7"
scalaVersion := "2.13.17"

dependencyCheckConnectionString := Some("db123")

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import sbt.File

version := "0.1"
lazy val root = project in file(".")
scalaVersion := "2.10.7"
scalaVersion := "2.13.17"

dependencyCheckAutoUpdate := Some(false)
dependencyCheckDataDirectory := Some(new File(baseDirectory.value + "/tmp/sbt-dependency-check"))
Expand Down
2 changes: 1 addition & 1 deletion testProject/build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
version := "0.1"
lazy val root = project in file(".")
scalaVersion := "2.12.17"
scalaVersion := "2.13.17"

resolvers += Resolver.mavenLocal
Loading