-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
32 lines (27 loc) · 931 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
lazy val commonSettings = Seq(
version := Version.floodmodel,
scalaVersion := Version.scala,
description := "USACE Flood Model",
organization := "com.azavea",
scalacOptions ++= Seq(
"-deprecation",
"-unchecked",
"-Yinline-warnings",
"-language:implicitConversions",
"-language:reflectiveCalls",
"-language:higherKinds",
"-language:postfixOps",
"-language:existentials",
"-feature"),
resolvers += "LocationTech GeoTrellis Releases" at "https://mvnrepository.com/artifact/org.locationtech.geotrellis/",
shellPrompt := { s => Project.extract(s).currentProject.id + " > " }
) ++ net.virtualvoid.sbt.graph.Plugin.graphSettings
lazy val root =
Project("usaceflood", file("."))
.aggregate(ingest, server)
lazy val ingest =
Project("ingest", file("ingest"))
.settings(commonSettings: _*)
lazy val server =
Project("server", file("server"))
.settings(commonSettings: _*)