-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
31 lines (26 loc) · 1.14 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
enablePlugins(JavaAppPackaging)
name := "titan-http"
organization := "com.nodalweb"
version := "1.0"
scalaVersion := "2.11.7"
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")
val titanV = "1.0.0"
libraryDependencies ++= {
val akkaV = "2.3.12"
val akkaStreamV = "1.0"
val scalaTestV = "2.2.5"
Seq(
"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-stream-experimental" % akkaStreamV,
"com.typesafe.akka" %% "akka-http-core-experimental" % akkaStreamV,
"com.typesafe.akka" %% "akka-http-experimental" % akkaStreamV,
"com.typesafe.akka" %% "akka-http-spray-json-experimental" % akkaStreamV,
"com.typesafe.akka" %% "akka-http-testkit-experimental" % akkaStreamV,
"com.michaelpollmeier" %% "gremlin-scala" % "3.0.1-incubating",
"org.scalatest" %% "scalatest" % scalaTestV,
"com.thinkaurelius.titan" % "titan-core" % titanV,
"com.thinkaurelius.titan" % "titan-cassandra" % titanV,
"com.thinkaurelius.titan" % "titan-es" % titanV
)
}
Revolver.settings