-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.sbt
33 lines (29 loc) · 1.01 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
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")
)
)
)
)
organization in ThisBuild := "io.github.streetcontxt"
scalaVersion in ThisBuild := "2.13.1"
crossScalaVersions := Seq("2.11.12", "2.12.11", "2.13.1")
licenses in ThisBuild += ("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0.html"))
sonatypeCredentialHost := "s01.oss.sonatype.org"
name := "kpl-scala"
val slf4j = "org.slf4j" % "slf4j-api" % "1.7.25"
val amazonKinesisProducer = "com.amazonaws" % "amazon-kinesis-producer" % "0.12.11"
val typesafeConfig = "com.typesafe" % "config" % "1.3.1"
libraryDependencies ++= Seq(
slf4j,
amazonKinesisProducer,
typesafeConfig
)