From d90ce1890e0bd7ddf6f3720201c86c87cf352a47 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 13 Dec 2024 17:43:31 +0000 Subject: [PATCH] Update jgiven-core, jgiven-html5-report to 2.0.1 --- project/Dependencies.scala | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 8f7e62c..8a28552 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -2,12 +2,14 @@ import sbt.* object Dependencies { - private val jGivenVersion = "2.0.0" + private val jGivenVersion = "2.0.1" - lazy val `commons-io` = "commons-io" % "commons-io" % "2.18.0" % Runtime // Please remove this dependency once jgiven-html5-report will transitively depend on it + lazy val `commons-io` = + "commons-io" % "commons-io" % "2.18.0" % Runtime // Please remove this dependency once jgiven-html5-report will transitively depend on it lazy val gson = "com.google.code.gson" % "gson" % "2.11.0" lazy val `jgiven-core` = "com.tngtech.jgiven" % "jgiven-core" % jGivenVersion - lazy val `jgiven-html5-report` = "com.tngtech.jgiven" % "jgiven-html5-report" % jGivenVersion exclude ("commons-io", "commons-io") + lazy val `jgiven-html5-report` = + "com.tngtech.jgiven" % "jgiven-html5-report" % jGivenVersion exclude ("commons-io", "commons-io") lazy val `log4j-slf4j-impl` = "org.apache.logging.log4j" % "log4j-slf4j2-impl" % "2.24.2" % Test lazy val scalatest = "org.scalatest" %% "scalatest" % "3.2.19" lazy val `slf4j-api` = "org.slf4j" % "slf4j-api" % "2.0.16"