-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
26 lines (20 loc) · 1005 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
organization := "io.github.samanos"
name := "tlog"
scalaVersion := "2.11.8"
scalacOptions += "-feature"
val Akka = "2.4.3"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-stream" % Akka,
"io.spray" %% "spray-json" % "1.3.2",
"com.github.pathikrit" %% "better-files" % "2.15.0",
"org.eclipse.paho" % "org.eclipse.paho.client.mqttv3" % "1.0.2",
"org.bouncycastle" % "bcprov-jdk15on" % "1.54",
"com.typesafe.akka" %% "akka-testkit" % Akka % Test,
"com.typesafe.akka" %% "akka-stream-testkit" % Akka % Test,
"org.scalatest" %% "scalatest" % "2.2.6" % Test,
"org.scalamock" %% "scalamock-scalatest-support" % "3.2.2" % Test
)
enablePlugins(GitVersioning)
git.useGitDescribe := true
enablePlugins(JavaAppPackaging)
initialCommands in console := """import io.github.samanos.tlog._"""