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 5d6e666
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .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
version = 3.8.1
11 changes: 5 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,14 @@ lazy val commonSettings = Seq(
scalacOptions += "-deprecation",
sonatypeProjectHosting :=
Some(GitHubHosting("seblm", "sbt-jgiven-scalatest-reporter", "[email protected]")),
version := "1.0.3"
version := "1.0.4-SNAPSHOT"
)

lazy val root = (project in file("."))
lazy val `sbt-jgiven-scalatest-reporter` = (project in file("."))
.enablePlugins(SbtPlugin)
.settings(
commonSettings,
name := "sbt-jgiven-scalatest-reporter",
scalaVersion := "2.12.18",
scalaVersion := "2.12.19",
scriptedLaunchOpts := { scriptedLaunchOpts.value ++ Seq("-Dplugin.version=" + version.value) },
scriptedBufferLog := false
)
Expand All @@ -25,7 +24,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 +37,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.0"
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
Expand Up @@ -8,7 +8,7 @@ object SbtJgivenScalatestReporterPlugin extends AutoPlugin {
override def trigger = allRequirements

override lazy val projectSettings: Seq[Setting[_]] = Seq(
libraryDependencies += "io.github.seblm" %% "jgiven-scalatest-reporter" % "1.0.3" % Test,
libraryDependencies += "io.github.seblm" %% "jgiven-scalatest-reporter" % "1.0.4-SNAPSHOT" % Test,
Test / testOptions +=
Tests.Argument(TestFrameworks.ScalaTest, "-C", "io.github.seblm.scalatest.jgiven.JGivenHtml5Reporter")
)
Expand Down
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
@@ -1,5 +1,5 @@
version := "0.1"
scalaVersion := "2.13.12"
scalaVersion := "2.13.14"
scalacOptions += "-deprecation"

import Dependencies._
Expand Down
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 5d6e666

Please sign in to comment.