-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.sbt
48 lines (33 loc) · 1.39 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
40
41
42
43
44
45
46
47
48
import com.typesafe.sbt.SbtNativePackager._
import com.typesafe.sbt.packager.archetypes.ServerLoader
import NativePackagerKeys._
name := """gtfs-data-manager"""
version := "0.3.4"
serverLoading in Rpm := ServerLoader.SystemV
serverLoading in Debian := ServerLoader.SystemV
maintainer in Linux := "Matthew Wigginton Conway <[email protected]>"
packageSummary in Linux := "GTFS Data Manager"
packageDescription := "GTFS Data Manager"
rpmRelease := "1"
rpmVendor := "conveyal.com"
rpmUrl := Some("http://github.com/conveyal/gtfs-data-manager")
rpmLicense := Some("MIT")
lazy val root = (project in file(".")).enablePlugins(PlayJava)
scalaVersion := "2.11.1"
libraryDependencies ++= Seq(
javaJdbc,
javaEbean,
cache,
javaWs,
"org.mapdb" % "mapdb" % "1.0.6",
"org.julienrf" %% "play-jsmessages" % "1.6.2",
"com.google.guava" % "guava" % "18.0",
"com.amazonaws" % "aws-java-sdk-s3" % "1.9.3",
"commons-io" % "commons-io" % "2.4",
"net.sourceforge.javacsv" % "javacsv" % "2.0",
"com.conveyal" % "gtfs-validator-json" % "0.0.1-SNAPSHOT" exclude("org.slf4j", "slf4j-simple")
)
resolvers += "Local Maven Repository" at "file://"+Path.userHome.absolutePath+"/.m2/repository"
resolvers += "Conveyal Maven Repository" at "http://maven.conveyal.com"
resolvers += "Geotoolkit Maven Repository" at "http://maven.geotoolkit.org"
resolvers += "OSGeo" at "http://download.osgeo.org/webdav/geotools/"