-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
60 lines (53 loc) · 1.57 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
import sbt.url
name := "tresor"
scalaVersion := "2.13.13"
scalacOptions ++= Seq(
"-encoding",
"utf8", // Option and arguments on same line
"-Xfatal-warnings", // New lines for each options
"-deprecation",
"-unchecked",
"-language:implicitConversions",
"-language:higherKinds",
"-language:existentials",
"-language:postfixOps"
)
inThisBuild(
List(
organization := "com.commercetools",
homepage := Some(url("https://github.com/commercetools/tresor")),
licenses := Seq(
"APL2" -> url("http://www.apache.org/licenses/LICENSE-2.0.txt")
),
developers := List(
Developer(
id = "adrobisch",
name = "Andreas Drobisch",
email = "[email protected]",
url = url("http://drobisch.com/")
)
),
scmInfo := Some(
ScmInfo(
url("https://github.com/commercetools/tresor"),
"scm:[email protected]:commercetools/tresor.git"
)
)
)
)
val circeVersion = "0.14.6"
val circeDeps = Seq(
"io.circe" %% "circe-core",
"io.circe" %% "circe-generic",
"io.circe" %% "circe-parser"
).map(_ % circeVersion)
libraryDependencies ++= circeDeps ++ Seq(
"org.typelevel" %% "cats-effect" % "3.5.4",
"com.softwaremill.sttp.client3" %% "core" % "3.9.4",
"org.slf4j" % "slf4j-api" % "2.0.12",
"org.scalatest" %% "scalatest" % "3.2.18" % Test,
"org.apache.logging.log4j" % "log4j-api" % "2.23.1" % Test,
"org.apache.logging.log4j" % "log4j" % "2.23.1" % Test,
"org.apache.logging.log4j" % "log4j-slf4j-impl" % "2.23.1" % Test,
"com.github.tomakehurst" % "wiremock-standalone" % "3.0.1" % Test
)