-
Notifications
You must be signed in to change notification settings - Fork 40
/
build.sbt
21 lines (16 loc) · 837 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
organization := "io.github"
name := "crawler"
crossScalaVersions := Seq("2.11.7", "2.10.5")
scalaVersion := crossScalaVersions.value.head
scalacOptions := Seq("-deprecation", "-unchecked", "-feature")
libraryDependencies ++= Seq (
"net.sourceforge.htmlunit" % "htmlunit" % "2.15",
"org.specs2" %% "specs2-core" % "3.6.2" % "test",
"com.typesafe.akka" %% "akka-http-experimental" % "1.0" % "test",
"com.typesafe.akka" %% "akka-http-xml-experimental" % "1.0" % "test"
)
resolvers += "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases"
enablePlugins(GitVersioning)
git.useGitDescribe := true // figure out version from last tag
// required for release to bintray
licenses += ("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0"))