-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
46 lines (43 loc) · 1.29 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
lazy val commonSettings = Seq(
scalaVersion := "2.13.2",
addCompilerPlugin("org.typelevel" %% "kind-projector" % "0.11.0" cross CrossVersion.full),
addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1"),
)
lazy val root = (project in file("."))
.settings(
commonSettings,
name := "control",
version := "0.1.0",
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-core" % "2.3.0",
"org.typelevel" %% "cats-effect" % "3.2.2",
)
)
lazy val playExample = (project in file("play-example"))
.enablePlugins(PlayScala)
.dependsOn(root)
.settings(
commonSettings,
name := "play-example",
version := "0.1.0",
routesImport += "wolfendale.example.Identifier",
libraryDependencies ++= Seq(
guice,
"org.typelevel" %% "cats-core" % "2.3.0",
"org.typelevel" %% "cats-effect" % "3.2.2",
"com.beachape" %% "enumeratum-play" % "1.6.1"
)
)
lazy val ossExample = (project in file("oss-example"))
.enablePlugins(PlayScala)
.dependsOn(root)
.settings(
commonSettings,
name := "oss-example",
version := "0.1.0",
libraryDependencies ++= Seq(
guice,
"org.typelevel" %% "cats-core" % "2.3.0",
"org.typelevel" %% "cats-effect" % "3.2.2",
)
)