Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
seblm committed Jun 2, 2024
1 parent 398b2c7 commit 7772e8a
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
maxColumn = 120
rewrite.rules = [SortImports]
runner.dialect = "scala212"
version = 3.8.0
runner.dialect = "scala213"
version = 3.8.1
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ lazy val root = (project in file("."))
.settings(
commonSettings,
name := "sbt-jgiven-scalatest-reporter",
scalaVersion := "2.12.18",
scalaVersion := "2.13.14",
scriptedLaunchOpts := { scriptedLaunchOpts.value ++ Seq("-Dplugin.version=" + version.value) },
scriptedBufferLog := false
)
Expand All @@ -25,7 +25,7 @@ lazy val root = (project in file("."))
lazy val `jgiven-scalatest-reporter` = project
.settings(
commonSettings,
scalaVersion := "2.13.12",
scalaVersion := "2.13.14",
libraryDependencies += `jgiven-core`,
libraryDependencies += `jgiven-html5-report`,
libraryDependencies += `log4j-slf4j-impl`,
Expand All @@ -38,7 +38,7 @@ lazy val `jgiven-scalatest-reporter` = project
lazy val `json-scalatest-reporter` = project
.settings(
commonSettings,
scalaVersion := "2.13.12",
scalaVersion := "2.13.14",
libraryDependencies += gson,
libraryDependencies += `log4j-slf4j-impl`,
libraryDependencies += scalatest,
Expand Down
4 changes: 2 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ object Dependencies {

private val jGivenVersion = "1.3.1"

lazy val gson = "com.google.code.gson" % "gson" % "2.10.1"
lazy val gson = "com.google.code.gson" % "gson" % "2.11.1"
lazy val `jgiven-core` = "com.tngtech.jgiven" % "jgiven-core" % jGivenVersion
lazy val `jgiven-html5-report` = "com.tngtech.jgiven" % "jgiven-html5-report" % jGivenVersion
lazy val `log4j-slf4j-impl` = "org.apache.logging.log4j" % "log4j-slf4j2-impl" % "2.22.1" % Test
lazy val `log4j-slf4j-impl` = "org.apache.logging.log4j" % "log4j-slf4j2-impl" % "2.23.1" % Test
lazy val scalatest = "org.scalatest" %% "scalatest" % "3.2.18"
lazy val `slf4j-api` = "org.slf4j" % "slf4j-api" % "2.0.12"

Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version = 1.9.8
sbt.version = 1.10.0
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
maxColumn = 120
rewrite.rules = [SortImports]
runner.dialect = "scala213"
version = 3.8.0
version = 3.8.1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import sbt._

object Dependencies {

lazy val `log4j-slf4j-impl` = "org.apache.logging.log4j" % "log4j-slf4j2-impl" % "2.22.1"
lazy val `log4j-slf4j-impl` = "org.apache.logging.log4j" % "log4j-slf4j2-impl" % "2.23.1"
lazy val scalatest = "org.scalatest" %% "scalatest" % "3.2.18"

}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version = 1.9.8
sbt.version = 1.10.0

0 comments on commit 7772e8a

Please sign in to comment.