-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.sbt
More file actions
21 lines (20 loc) · 822 Bytes
/
build.sbt
File metadata and controls
21 lines (20 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name := "fluent-translator"
organization := "com.smartelk"
version := "2.1.0"
scalaVersion := "2.11.7"
scalacOptions := Seq("-deprecation", "-feature")
resolvers ++= Seq(
"Maven central http" at "http://repo1.maven.org/maven2"
)
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.3.9",
"net.databinder.dispatch" %% "dispatch-core" % "0.11.3",
"org.json4s" %% "json4s-native" % "3.3.0",
"com.typesafe.akka" %% "akka-testkit" % "2.3.9" % "test",
"org.scalatest" %% "scalatest" % "2.2.1" % "test",
"org.mockito" % "mockito-core" % "1.10.19" % "test"
)
bintrayOrganization := Some("smartelk")
bintrayVcsUrl := Some("https://github.com/SmartElk/fluent-translator.git")
bintrayPackageLabels := Seq("scala", "translator")
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))