-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
35 lines (29 loc) · 997 Bytes
/
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
// Change here with your organization details
organization in ThisBuild := "com.tiarebalbi"
version in ThisBuild := "1.0-SNAPSHOT"
// the Scala version that will be used for cross-compiled libraries
scalaVersion in ThisBuild := "2.13.6"
val macwire = "com.softwaremill.macwire" %% "macros" % "2.4.1" % "provided"
val scalaTest = "org.scalatest" %% "scalatest" % "3.2.10" % Test
lazy val `lagom-starter-minimal` = (project in file("."))
.aggregate(`core-api`, `core-impl`)
lazy val `core-api` = (project in file("core-api"))
.settings(
libraryDependencies ++= Seq(
lagomScaladslApi
)
)
lazy val `core-impl` = (project in file("core-impl"))
.enablePlugins(LagomScala)
.settings(
libraryDependencies ++= Seq(
lagomScaladslKafkaBroker,
lagomScaladslTestKit,
macwire,
scalaTest
)
)
.settings(lagomForkedTestSettings)
.dependsOn(`core-api`)
// Cassandra disabled by default, review if needed
lagomCassandraEnabled in ThisBuild := false