-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
40 lines (27 loc) · 1.26 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
// set the name of the project
name := "librjmcmc4s"
version := "1.0"
organization := "fr.ign"
// set the Scala version used for the project
scalaVersion := "2.11.7"
// add a maven-style repository
resolvers ++= Seq(
"Scala Tools Snapshots" at "http://scala-tools.org/repo-snapshots/",
"Sonatype Releases" at "http://oss.sonatype.org/content/repositories/releases/",
"OpenGeo repo" at "http://download.osgeo.org/webdav/geotools/",
"Bounless" at "http://repo.boundlessgeo.com/main/"
)
// add a test dependency on ScalaCheck
//libraryDependencies ++= Seq(
// "org.scalacheck" %% "scalacheck" % "1.11.3" % "test",
// "org.scalatest" % "scalatest_2.11" % "2.2.1" % "test"
//)
libraryDependencies += "org.apache.commons" % "commons-math3" % "3.3"
libraryDependencies += "org.geotools" % "gt-shapefile" % "13.1"
libraryDependencies += "org.geotools" % "gt-epsg-wkt" % "13.1"
libraryDependencies += "org.geotools" % "gt-cql" % "13.1"
libraryDependencies += "javax.media" % "jai_core" % "1.1.3" from "http://download.osgeo.org/webdav/geotools/javax/media/jai_core/1.1.3/jai_core-1.1.3.jar"
libraryDependencies += "org.scala-lang.modules" %% "scala-xml" % "1.0.5"
libraryDependencies += "com.typesafe.scala-logging" %% "scala-logging" % "3.1.0"
EclipseKeys.withSource := true
//