Skip to content
This repository was archived by the owner on Sep 16, 2022. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,16 @@ val scalaV = "3.0.0-RC1"

val catsEffectV = "3.0.2"

val flywayV = "7.8.2"
val flywayV = "7.8.2"

// Test
val specs2V = "4.12.0"
val specs2V = "4.12.0"

val testContainersScalaV = "0.39.4" // https://github.com/testcontainers/testcontainers-scala/releases
val testContainersScalaV = "0.39.4" // https://github.com/testcontainers/testcontainers-scala/releases

val testContainersPostgresV = "1.15.3" // https://github.com/testcontainers/testcontainers-java/releases

val postgresV = "42.2.20"

val postgresV = "42.2.25"

lazy val `flutterby` =
(project in file("."))
Expand Down Expand Up @@ -41,16 +40,16 @@ lazy val `flutterby-cats` = project

lazy val commonSettings = Seq(
organization := "dev.shawngarner",
scalaVersion := scalaV ,
scalaVersion := scalaV,
// scalacOptions ++= Seq(
// "-rewrite",
// "-new-syntax",
// "-source:3.0-migration"
// ),
libraryDependencies ++= Seq(
"org.flywaydb" % "flyway-core" % flywayV,
("org.specs2" %% "specs2-core" % specs2V % Test).cross(CrossVersion.for3Use2_13),
("org.specs2" %% "specs2-scalacheck" % specs2V % Test).cross(CrossVersion.for3Use2_13)
("org.specs2" %% "specs2-core" % specs2V % Test).cross(CrossVersion.for3Use2_13),
("org.specs2" %% "specs2-scalacheck" % specs2V % Test).cross(CrossVersion.for3Use2_13)
)
)

Expand Down