-
Notifications
You must be signed in to change notification settings - Fork 15
/
build.sbt
58 lines (52 loc) · 1.93 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
inThisBuild(
List(
organization := "io.github.streetcontxt",
homepage := Some(url("https://github.com/streetcontxt/kcl-akka-stream")),
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
developers := List(
Developer(
"agenovese",
"Angelo Gerard Genovese",
url("https://github.com/agenovese")
),
Developer(
"elise-scx",
"Elise Cormie",
url("https://github.com/elise-scx")
)
)
)
)
configs(IntegrationTest)
Defaults.itSettings
val TestAndIntegrationTest = "test,it"
organization in ThisBuild := "io.github.streetcontxt"
scalaVersion in ThisBuild := "2.13.6"
scalacOptions ++= Seq("-deprecation", "-feature")
crossScalaVersions in ThisBuild := Seq("2.12.13", "2.13.6")
licenses in ThisBuild += ("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0.html"))
sonatypeCredentialHost := "s01.oss.sonatype.org"
name := "kcl-akka-stream"
val AkkaVersion = "2.6.16"
val slf4j = "org.slf4j" % "slf4j-api" % "1.7.32"
val logback = "ch.qos.logback" % "logback-classic" % "1.2.5"
val amazonKinesisClient = "software.amazon.kinesis" % "amazon-kinesis-client" % "2.3.6"
val scalaKinesisProducer = "io.github.streetcontxt" %% "kpl-scala" % "2.0.0"
val scalaCollectionCompat = "org.scala-lang.modules" %% "scala-collection-compat" % "2.5.0"
val scalaTest = "org.scalatest" %% "scalatest" % "3.2.9"
val scalaMock = "org.scalamock" %% "scalamock" % "5.1.0"
val akkaStream = "com.typesafe.akka" %% "akka-stream" % AkkaVersion
val akkaStreamTestkit = "com.typesafe.akka" %% "akka-stream-testkit" % AkkaVersion
libraryDependencies ++= Seq(
akkaStream,
amazonKinesisClient,
slf4j,
scalaCollectionCompat,
scalaTest % TestAndIntegrationTest,
akkaStreamTestkit % TestAndIntegrationTest,
logback % TestAndIntegrationTest,
scalaKinesisProducer,
scalaMock % Test
)