Skip to content

Commit

Permalink
dependencies updates
Browse files Browse the repository at this point in the history
  • Loading branch information
yurique committed Feb 26, 2021
1 parent 8a2b8eb commit d3bce5f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 16 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ lazy val root =
name := "frontroute",
libraryDependencies ++=
Seq(
("com.raquo" %%% "airstream" % BuildSettings.version.airstream).withDottyCompat(scalaVersion.value),
"app.tulz" %%% "tuplez-apply" % BuildSettings.version.`tuplez-apply`,
("com.lihaoyi" %%% "utest" % BuildSettings.version.utest % Test).withDottyCompat(scalaVersion.value)
("com.raquo" %%% "airstream" % LibraryVersions.airstream).withDottyCompat(scalaVersion.value),
"app.tulz" %%% "tuplez-apply" % LibraryVersions.`tuplez-apply`,
("com.lihaoyi" %%% "utest" % LibraryVersions.utest % Test).withDottyCompat(scalaVersion.value)
),
testFrameworks += new TestFramework("utest.runner.Framework"),
scalacOptions ~= (
Expand Down
17 changes: 9 additions & 8 deletions project/BuildSettings.scala
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
object BuildSettings {
object LibraryVersions {

object version {
val airstream = "0.12.0"
val `tuplez-apply` = "0.3.4"
val utest = "0.7.7"

val airstream = "0.12.0"
val `tuplez-apply` = "0.3.4"
val utest = "0.7.7"
val munit = "0.7.22"

}
}

object ScalaVersions {
val v213 = "2.13.5"
val v212 = "2.12.12"
val v3RC1 = "3.0.0-RC1"
}
5 changes: 0 additions & 5 deletions project/ScalaVersions.scala

This file was deleted.

0 comments on commit d3bce5f

Please sign in to comment.