forked from alphagov/location-data-importer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
29 lines (24 loc) · 1.06 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
name := "location-data-importer"
version := "0.2"
scalaVersion := "2.11.7"
parallelExecution := false
libraryDependencies ++= Seq(
"org.geotools" % "gt-main" % "9.3",
"org.geotools" % "gt-epsg-hsql" % "9.3",
"javax.media" %"jai_core" % "1.1.3" from "http://maven.geotoolkit.org/javax/media/jai_core/1.1.3/jai_core-1.1.3.jar",
"com.github.scopt" %% "scopt" % "3.3.0",
"com.github.scala-incubator.io" % "scala-io-core_2.11" % "0.4.3",
"ch.qos.logback" % "logback-classic" % "1.1.3",
"joda-time" % "joda-time" % "2.9.1",
"org.joda" % "joda-convert" % "1.8",
"org.mongodb" %% "casbah" % "2.8.2",
"com.novus" % "salat-core_2.11" % "1.9.9",
"org.specs2" %% "specs2-core" % "3.6.6" % "test",
"org.specs2" % "specs2-mock_2.11" % "3.6.6" % "test"
)
resolvers ++= Seq(
"maven" at "http://download.java.net/maven/2",
"geotools" at "http://download.osgeo.org/webdav/geotools",
"sonatype-public" at "https://oss.sonatype.org/content/groups/public",
"GDS maven repo snapshots" at "http://alphagov.github.com/maven/snapshots"
)