-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.sbt
26 lines (23 loc) · 930 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
lazy val commonSettings = Seq(
organization := "com.meetup",
version := "0.6.2",
licenses += ("MIT", url("http://opensource.org/licenses/MIT")),
scalaVersion := "2.11.12",
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "2.2.0" % "test",
"org.scalacheck" %% "scalacheck" % "1.11.5" % "test"
),
resolvers += Resolver.githubPackages("meetup", "meetup")
)
ThisBuild / githubOwner := "meetup"
ThisBuild / githubRepository := "meetup"
ThisBuild / githubTokenSource := TokenSource.Environment("GITHUB_TOKEN")
lazy val `apple-of-my-iap` = (project in file("."))
.settings(commonSettings: _*)
.settings(
test := {} /* No tests in the root project and this prevents an annoying
message. */
)
.aggregate(`iap-api`, `iap-service`)
lazy val `iap-api` = project.settings(commonSettings: _*)
lazy val `iap-service` = project.settings(commonSettings: _*).dependsOn(`iap-api`)