Skip to content

Commit

Permalink
fix scala version
Browse files Browse the repository at this point in the history
  • Loading branch information
OutOfBedlam committed Jun 22, 2022
1 parent c609798 commit 3e26d5a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,14 @@ lazy val root = (project in file("."))
)
.settings(
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-reflect" % scalaVersionString % Provided,
"org.slf4j" % "slf4j-api" % "1.7.36" % Provided,
/// macro
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
/// logging
"org.slf4j" % "slf4j-api" % "1.7.36",
"ch.qos.logback" % "logback-classic" % "1.2.11",
/// test
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.5" % Test,
"org.scalatest" %% "scalatest" % "3.2.12" % Test,
"ch.qos.logback" % "logback-classic" % "1.2.11" % Provided,
)
)
.settings(
Expand Down

0 comments on commit 3e26d5a

Please sign in to comment.