-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.sbt
30 lines (22 loc) · 956 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
27
28
29
30
organization := "com.sandinh"
name := "couchbase-akka-extension"
version := "3.1.6"
scalaVersion := "2.11.2"
crossScalaVersions := Seq(
"2.11.2",
"2.10.4"
)
scalacOptions ++= Seq(
"-encoding", "UTF-8", "-deprecation", "-unchecked", "-feature", //"-optimise",
"-Xmigration", "-Xfuture", //"–Xverify", "-Xcheck-null", "-Ystatistics",
"-Yinline-warnings", //"-Yinline",
"-Ywarn-dead-code", "-Ydead-code"
)
javacOptions ++= Seq("-encoding", "UTF-8", "-source", "1.7", "-target", "1.7", "-Xlint:unchecked", "-Xlint:deprecation")
resolvers += "Typesafe Releases" at "http://repo.typesafe.com/typesafe/releases/"
libraryDependencies ++= Seq(
"org.specs2" %% "specs2" % "2.4" % "test",
"com.typesafe.play" %% "play-json" % "2.3.2" % "optional",
"com.typesafe.akka" %% "akka-actor" % "2.3.4",
"com.couchbase.client" % "couchbase-client" % "1.4.4"
)