-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
63 lines (57 loc) · 2.55 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
enablePlugins(JavaAppPackaging)
name := "magickr"
organization := "com.moralyzr"
version := "0.0.1"
scalaVersion := "3.1.0"
scalacOptions := Seq("-unchecked", "-deprecation")
libraryDependencies ++= {
val catsVersion = "2.6.1"
val catsEffectVersion = "3.2.8"
val catsEffectTestVersion = "1.3.0"
val catsEffectTestkitVersion = "3.2.8"
val catsMtlVersion = "1.2.1"
val circeVersion = "0.14.1"
val doobieVersion = "1.0.0-M5"
val flywayVersion = "8.0.0"
val http4sVersion = "1.0.0-M29"
val jwtCirceVersion = "9.0.2"
val logbackVersion = "1.2.6"
val scalaBcryptVersion = "4.3.0"
val scalaTestVersion = "3.2.9"
val scalaLoggingVersion = "3.9.4"
val sconfigVersion = "1.4.5"
Seq(
"org.typelevel" %% "cats-core" % catsVersion,
"org.typelevel" %% "cats-kernel" % catsVersion,
"org.typelevel" %% "cats-effect" % catsEffectVersion,
"org.typelevel" %% "cats-mtl" % catsMtlVersion,
"io.circe" %% "circe-core" % circeVersion,
"io.circe" %% "circe-parser" % circeVersion,
"io.circe" %% "circe-generic" % circeVersion,
"com.typesafe" % "config" % "1.4.1",
"org.tpolecat" %% "doobie-core" % doobieVersion,
"org.tpolecat" %% "doobie-hikari" % doobieVersion,
"org.tpolecat" %% "doobie-postgres" % doobieVersion,
"org.flywaydb" % "flyway-core" % flywayVersion,
"org.http4s" %% "http4s-blaze-server" % http4sVersion,
"org.http4s" %% "http4s-circe" % http4sVersion,
"org.http4s" %% "http4s-dsl" % http4sVersion,
"com.github.jwt-scala" %% "jwt-circe" % jwtCirceVersion,
"ch.qos.logback" % "logback-classic" % logbackVersion,
"com.typesafe.scala-logging" %% "scala-logging" % scalaLoggingVersion,
"org.ekrich" %% "sconfig" % sconfigVersion,
"org.scalactic" %% "scalactic" % scalaTestVersion,
"org.scalatest" %% "scalatest" % scalaTestVersion % Test,
"org.typelevel" %% "cats-effect-testing-scalatest" % catsEffectTestVersion % Test,
"org.typelevel" %% "cats-effect-testkit" % catsEffectTestkitVersion % Test,
"org.scalacheck" %% "scalacheck" % "1.15.4" % Test,
"org.tpolecat" %% "doobie-h2" % doobieVersion % Test
) ++ Seq(
"com.github.t3hnar" %% "scala-bcrypt" % scalaBcryptVersion,
"io.github.etspaceman" %% "scalacheck-faker" % "7.0.0" % Test
).map(_.cross(CrossVersion.for3Use2_13))
}
//Compile / guardrailTasks := List(
// ScalaServer(file("src/main/resources/api.yaml"), pkg="com.moralyzr.magickr.adapters.gen", tracing=true)
//)
Revolver.settings