Skip to content

Commit

Permalink
Add slf4j-simple 1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
eed3si9n committed Dec 13, 2024
1 parent bb3fc4f commit c81b185
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .scala-steward.conf
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
pullRequests.frequency = "14 days"

updates.limit = 3

updates.pin = [
{
// jgit 6.x require JDK 11
groupId = "org.eclipse.jgit"
version = "5."
}
},
{ groupId = "org.slf4j", artifactId = "slf4j-simple", version = "1." }
]

updates.ignore = [
Expand Down
10 changes: 7 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,10 @@ lazy val app = (project in file("app"))
csRun / sourceDirectory := {
(baseDirectory).value.getParentFile / "src" / "main" / "conscript"
},
libraryDependencies += launcherIntf
libraryDependencies ++= List(
launcherIntf,
slf4jsimple
)
)

lazy val crossSbt = Seq(
Expand Down Expand Up @@ -157,14 +160,14 @@ lazy val lib = (project in file("library"))
libraryDependencies ++= Seq(
stringTemplate,
jgit,
slf4jsimple,
commonsIo,
plexusArchiver,
scalaXml,
parserCombinator(scalaVersion.value),
scalacheck % Test,
sbtIo % Test,
scalamock % Test,
"org.slf4j" % "slf4j-simple" % "1.7.36" % Test
scalamock % Test
),
Test / testOptions += Tests.Argument(TestFrameworks.ScalaCheck, "-minSuccessfulTests", "1000", "-workers", "10")
)
Expand All @@ -179,6 +182,7 @@ lazy val launcher = (project in file("launcher"))
crossScalaVersions := List(scala212, scala213, scala3),
libraryDependencies ++= Seq(
coursier,
slf4jsimple,
verify % Test,
sbtIo % Test
),
Expand Down
1 change: 1 addition & 0 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ object Dependencies {
case _ => "2.2.0"
}
}
val slf4jsimple = "org.slf4j" % "slf4j-simple" % "1.7.36"
val logback = "ch.qos.logback" % "logback-classic" % "1.2.3"
val coursier = "io.get-coursier" %% "coursier" % "2.1.13"
val launcherIntf = "org.scala-sbt" % "launcher-interface" % "1.4.4"
Expand Down

0 comments on commit c81b185

Please sign in to comment.