Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
barryoneill committed May 11, 2022
1 parent a1a218c commit ead850d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 13 deletions.
19 changes: 10 additions & 9 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
@@ -1,36 +1,37 @@
import sbt.Keys.{libraryDependencies, testFrameworks}
import sbt._

//noinspection TypeAnnotation
object Dependencies {

val TestLib = Seq(
libraryDependencies ++= Seq(
"org.scalameta" %% "munit" % "0.7.29" % Test,
"org.mockito" % "mockito-core" % "4.3.1" % Test,
"org.mockito" % "mockito-core" % "4.5.1" % Test,
"org.gnieh" %% "diffson-circe" % "4.1.1"
),
testFrameworks += new TestFramework("munit.Framework")
)

val Slack = Seq(
libraryDependencies += "com.slack.api" % "slack-app-backend" % "1.18.0"
libraryDependencies += "com.slack.api" % "slack-app-backend" % "1.22.1"
)

val Refined = Seq(
libraryDependencies += "eu.timepit" %% "refined" % "0.9.28"
libraryDependencies += "eu.timepit" %% "refined" % "0.9.29"
)

val Logging = Seq(
libraryDependencies ++= Seq(
"org.typelevel" %% "log4cats-slf4j" % "2.2.0",
"ch.qos.logback" % "logback-classic" % "1.2.10" % Test,
"ch.qos.logback" % "logback-core" % "1.2.10" % Test,
"org.slf4j" % "jcl-over-slf4j" % "1.7.35" % Test,
"org.slf4j" % "jul-to-slf4j" % "1.7.35" % Test
"org.typelevel" %% "log4cats-slf4j" % "2.3.1",
"ch.qos.logback" % "logback-classic" % "1.2.11" % Test,
"ch.qos.logback" % "logback-core" % "1.2.11" % Test,
"org.slf4j" % "jcl-over-slf4j" % "1.7.36" % Test,
"org.slf4j" % "jul-to-slf4j" % "1.7.36" % Test
)
)

val Http4sVersion = "0.23.10"
val Http4sVersion = "0.23.11"
val Http4s = Seq(
libraryDependencies ++= Seq(
"org.http4s" %% "http4s-dsl" % Http4sVersion,
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.6.1
sbt.version=1.6.2
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.10.0")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.9.3")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10")
4 changes: 2 additions & 2 deletions src/test/resources/logback-test.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
<appender-ref ref="STDOUT" />
</appender>

<root level="INFO">
<root level="WARN">
<appender-ref ref="ASYNCSTDOUT" />
</root>

<statusListener class="ch.qos.logback.core.status.NopStatusListener" />

<logger name="io.laserdisc" level="INFO" />
<logger name="io.laserdisc" level="WARN" />

</configuration>

0 comments on commit ead850d

Please sign in to comment.