From 15941b727cba75128a2d0d7ae1be411bdc96691a Mon Sep 17 00:00:00 2001 From: Max Gonzih Date: Tue, 15 Nov 2022 08:14:49 +0000 Subject: [PATCH] Update cats-effect-testing-minitest to 1.5.0 --- build.sbt | 75 ++++++++++++++++++++++++------------------------------- 1 file changed, 32 insertions(+), 43 deletions(-) diff --git a/build.sbt b/build.sbt index 60906de..f02cf48 100644 --- a/build.sbt +++ b/build.sbt @@ -13,7 +13,7 @@ inThisBuild( List( scalaVersion := _scalaVersion, semanticdbEnabled := true, - semanticdbVersion := scalafixSemanticdb.revision, + semanticdbVersion := scalafixSemanticdb.revision ) ) @@ -22,12 +22,10 @@ lazy val root = project .settings( name := "app.paperhands", version := "0.1.0", - scalacOptions ++= List( "-Yrangepos", "-Wunused:imports" ), - scalaVersion := _scalaVersion, scalacOptions += "-Ymacro-annotations", run / fork := true, @@ -35,50 +33,41 @@ lazy val root = project Global / onChangedBuildSource := ReloadOnSourceChanges, testFrameworks += new TestFramework("minitest.runner.Framework"), autoCompilerPlugins := true, - - libraryDependencies ++=Seq( - "io.circe" %% "circe-core" % circeVersion, - "io.circe" %% "circe-generic" % circeVersion, - "io.circe" %% "circe-parser" % circeVersion, - "io.circe" %% "circe-literal" % circeVersion, - "io.circe" %% "circe-jawn" % circeVersion, - "io.circe" %% "circe-yaml" % "0.14.1", - - "org.http4s" %% "http4s-core" % http4sVersion, - "org.http4s" %% "http4s-dsl" % http4sVersion, - "org.http4s" %% "http4s-circe" % http4sVersion, + libraryDependencies ++= Seq( + "io.circe" %% "circe-core" % circeVersion, + "io.circe" %% "circe-generic" % circeVersion, + "io.circe" %% "circe-parser" % circeVersion, + "io.circe" %% "circe-literal" % circeVersion, + "io.circe" %% "circe-jawn" % circeVersion, + "io.circe" %% "circe-yaml" % "0.14.1", + "org.http4s" %% "http4s-core" % http4sVersion, + "org.http4s" %% "http4s-dsl" % http4sVersion, + "org.http4s" %% "http4s-circe" % http4sVersion, "org.http4s" %% "http4s-blaze-client" % http4sVersion, "org.http4s" %% "http4s-blaze-server" % http4sVersion, - "com.typesafe.scala-logging" %% "scala-logging" % "3.9.5", - "ch.qos.logback" % "logback-classic" % "1.2.11", - - "org.tpolecat" %% "doobie-core" % doobieVersion, - "org.tpolecat" %% "doobie-hikari" % doobieVersion, + "ch.qos.logback" % "logback-classic" % "1.2.11", + "org.tpolecat" %% "doobie-core" % doobieVersion, + "org.tpolecat" %% "doobie-hikari" % doobieVersion, "org.tpolecat" %% "doobie-postgres" % doobieVersion, - - "com.github.julien-truffaut" %% "monocle-core" % monocleVersion, - "com.github.julien-truffaut" %% "monocle-macro" % monocleVersion, // Not required for Scala 3 - - "io.monix" %% "minitest" % minitestVersion % "test", - "io.monix" %% "minitest-laws" % minitestVersion % "test", - "org.typelevel" %% "cats-effect-testing-minitest" % "1.4.0" % "test", - - "org.flywaydb" % "flyway-core" % "9.1.2", - - "net.ruippeixotog" %% "scala-scraper" % "3.0.0", - - "co.fs2" %% "fs2-core" % f2sVersion, - "co.fs2" %% "fs2-io" % f2sVersion, - - "org.gnieh" %% "fs2-data-csv" % f2sDataVersion, - - "org.typelevel" %% "cats-core" % catsVersion, - "org.typelevel" %% "cats-effect" % catsEffVersion, - - "me.xdrop" % "fuzzywuzzy" % "1.4.0", - ), + "com.github.julien-truffaut" %% "monocle-core" % monocleVersion, + "com.github.julien-truffaut" %% "monocle-macro" % monocleVersion, // Not required for Scala 3 + "io.monix" %% "minitest" % minitestVersion % "test", + "io.monix" %% "minitest-laws" % minitestVersion % "test", + "org.typelevel" %% "cats-effect-testing-minitest" % "1.5.0" % "test", + "org.flywaydb" % "flyway-core" % "9.1.2", + "net.ruippeixotog" %% "scala-scraper" % "3.0.0", + "co.fs2" %% "fs2-core" % f2sVersion, + "co.fs2" %% "fs2-io" % f2sVersion, + "org.gnieh" %% "fs2-data-csv" % f2sDataVersion, + "org.typelevel" %% "cats-core" % catsVersion, + "org.typelevel" %% "cats-effect" % catsEffVersion, + "me.xdrop" % "fuzzywuzzy" % "1.4.0" + ) ) -addCommandAlias("organizeImports", "scalafix dependency:OrganizeImports@com.github.liancheng:organize-imports:0.5.0") +addCommandAlias( + "organizeImports", + "scalafix dependency:OrganizeImports@com.github.liancheng:organize-imports:0.5.0" +) addCommandAlias("cleanImports", "scalafix RemoveUnused")