-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
26 lines (25 loc) · 865 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
lazy val commons = Seq(
organization := "it.datatoknowledge",
name := "HyLiEn",
version := "1.0.0",
scalaVersion := "2.11.8",
scalacOptions ++= Seq("-target:jvm-1.8", "-feature"),
resolvers ++= Seq(
"spray repo" at "http://repo.spray.io",
Resolver.sonatypeRepo("public"),
Resolver.typesafeRepo("releases")
)
)
lazy val root = (project in file("."))
.settings(commons: _*)
.settings(
libraryDependencies ++= Seq(
"org.specs2" %% "specs2" % "3.7",
"com.machinepublishers" % "jbrowserdriver" % "0.14.7",
"org.jsoup" % "jsoup" % "1.9.2",
"com.typesafe.scala-logging" % "scala-logging_2.11" % "3.4.0",
"ch.qos.logback" % "logback-classic" % "1.1.7",
"com.rockymadden.stringmetric" % "stringmetric-core_2.11" % "0.27.4",
"io.github.lukehutch" % "fast-classpath-scanner" % "1.9.19"
)
)