forked from pelagios/peripleo2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
47 lines (34 loc) · 1.42 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
name := """peripleo2"""
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.11.8"
scalacOptions ++= Seq("-feature")
resolvers ++= Seq(
"Open Source Geospatial Foundation Repository" at "http://download.osgeo.org/webdav/geotools/",
"http://maven.geotoolkit.org/" at "http://maven.geotoolkit.org/"
)
libraryDependencies ++= Seq(
ws,
cache,
filters,
"com.nrinaudo" %% "kantan.csv" % "0.1.15",
"com.sksamuel.elastic4s" %% "elastic4s-streams" % "2.4.0",
"com.vividsolutions" % "jts" % "1.13",
"jp.t2v" %% "play2-auth" % "0.14.1",
"org.geotools" % "gt-geojson" % "14.3",
"org.webjars" %% "webjars-play" % "2.5.0",
// Scalagios core + transient dependencies
"org.pelagios" % "scalagios-core" % "2.0.1" from "https://github.com/pelagios/scalagios/releases/download/v2.0.1/scalagios-core.jar",
"org.openrdf.sesame" % "sesame-rio-n3" % "2.7.5",
"org.openrdf.sesame" % "sesame-rio-rdfxml" % "2.7.5",
"org.webjars" % "jquery" % "1.12.0",
"org.webjars" % "jquery-ui" % "1.11.4",
"org.webjars" % "leaflet" % "1.0.3",
"org.webjars" % "numeral-js" % "1.5.3-1",
"org.webjars" % "typeaheadjs" % "0.11.1",
"org.webjars" % "velocity" % "1.1.0",
"org.scalatestplus.play" %% "scalatestplus-play" % "1.5.1" % Test
)
pipelineStages := Seq(rjs, digest, gzip)
includeFilter in (Assets, LessKeys.less) := "*.less"
excludeFilter in (Assets, LessKeys.less) := "_*.less"