-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
39 lines (31 loc) · 1.17 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
name := "ada-app"
organization in ThisBuild := "org.adada"
scalaVersion in ThisBuild := "2.11.12"
version in ThisBuild := "0.9.1-SNAPSHOT"
isSnapshot in ThisBuild := true
lazy val server = (project in file("server"))
lazy val web = (project in file("web"))
.enablePlugins(PlayScala, SbtWeb)
.dependsOn(server)
.aggregate(server)
.settings(
aggregate in test := false,
aggregate in testOnly := false
)
lazy val webNcer = (project in file("web-ncer"))
.enablePlugins(PlayScala, SbtWeb)
fork in Test := true
// POM settings for Sonatype
homepage in ThisBuild := Some(url("https://ada-discovery.github.io"))
publishMavenStyle in ThisBuild := true
scmInfo in ThisBuild := Some(ScmInfo(url("https://github.com/ada-discovery/ada-app"), "scm:[email protected]:ada-discovery/ada-app.git"))
developers in ThisBuild := List(
Developer("bnd", "Peter Banda", "[email protected]", url("https://peterbanda.net")),
Developer("sherzinger", "Sascha Herzinger", "[email protected]", url("https://wwwfr.uni.lu/lcsb/people/sascha_herzinger"))
)
publishTo in ThisBuild := Some(
if (isSnapshot.value)
Opts.resolver.sonatypeSnapshots
else
Opts.resolver.sonatypeStaging
)