-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
33 lines (23 loc) · 972 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
import sbt.Keys.libraryDependencies
organization in ThisBuild := "com.lightbend.lagom"
version in ThisBuild := "1.0-SNAPSHOT"
// the Scala version that will be used for cross-compiled libraries
scalaVersion in ThisBuild := "2.11.8"
lazy val `lagom-testbed-java-sbt` = (project in file("."))
.aggregate(
`client-side-discovery-testrun`,
`test-001-monoservice`,
`test-002-multiservice`
)
val lombok = "org.projectlombok" % "lombok" % "1.16.10"
lazy val `client-side-discovery-testrun` = (project in file("client-side-discovery-testrun"))
.enablePlugins(LagomJava)
.settings(common: _*)
.settings(libraryDependencies += lombok)
lazy val `test-001-monoservice` = (project in file("test-001-monoservice"))
.enablePlugins(LagomJava).settings(common: _*)
lazy val `test-002-multiservice` = (project in file("test-002-multiservice"))
.enablePlugins(LagomJava).settings(common: _*)
def common = Seq(
javacOptions in compile += "-parameters"
)