-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.sbt
More file actions
24 lines (23 loc) · 903 Bytes
/
build.sbt
File metadata and controls
24 lines (23 loc) · 903 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
lazy val commonSettings = Seq(
organization := "io.fullstackanalytics",
version := "0.1.6",
scalaVersion := "2.11.8"
)
lazy val root = (project in file(".")).
settings(commonSettings).
settings(
name := "pubsub4s",
licenses += ("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0")),
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.4.7",
"com.typesafe.akka" %% "akka-slf4j" % "2.4.7",
"com.typesafe.akka" %% "akka-stream" % "2.4.7",
"com.typesafe.akka" %% "akka-stream-testkit" % "2.4.7",
"com.typesafe.akka" %% "akka-testkit" % "2.4.7",
"com.google.apis" % "google-api-services-pubsub" % "v1-rev11-1.22.0",
"org.scalactic" %% "scalactic" % "2.2.6",
"org.scalatest" %% "scalatest" % "2.2.6" % "test"
),
bintrayRepository := "common",
bintrayOrganization := Some("fullstackanalytics")
)