-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.sbt
58 lines (48 loc) · 2.3 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
name := "clickhouse-akka-stream"
version := "0.5.0"
organization := "io.findify"
licenses := Seq("MIT" -> url("https://opensource.org/licenses/MIT"))
homepage := Some(url("https://github.com/findify/clickhouse-akka-stream"))
scalaVersion := "2.13.7"
crossScalaVersions := Seq("2.12.13", "2.13.7")
lazy val akkaVersion = "2.6.18"
lazy val akkaHttpVersion = "10.2.7"
lazy val circeVersion = "0.14.1"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-http" % akkaHttpVersion,
"com.typesafe.akka" %% "akka-stream" % akkaVersion,
"com.typesafe.akka" %% "akka-http-core" % akkaHttpVersion,
"com.typesafe.akka" %% "akka-http-testkit" % akkaHttpVersion % "test",
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-stream-testkit" % akkaVersion % "test",
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.4",
"ch.qos.logback" % "logback-classic" % "1.2.10" % "test",
"org.scalatest" %% "scalatest" % "3.0.9" % "test",
"com.dimafeng" %% "testcontainers-scala" % "0.39.12" % "test",
"com.chuusai" %% "shapeless" % "2.3.7",
"joda-time" % "joda-time" % "2.10.13",
"io.circe" %% "circe-core" % circeVersion,
"io.circe" %% "circe-generic" % circeVersion,
"io.circe" %% "circe-parser" % circeVersion,
"org.scalacheck" %% "scalacheck" % "1.15.4" % "test",
"com.propensive" %% "magnolia" % "0.17.0"
)
publishMavenStyle := true
publishTo := sonatypePublishToBundle.value
licenses := Seq("MIT" -> url("https://opensource.org/licenses/MIT"))
homepage := Some(url("https://github.com/findify/clickhouse-akka-stream"))
scmInfo := Some(
ScmInfo(
url("https://github.com/findify/clickhouse-akka-stream"),
"scm:[email protected]:findify/clickhouse-akka-stream.git"
)
)
developers := List(
Developer(
id = "romangrebennikov",
name = "Roman Grebennikov",
email = "[email protected]",
url = url("https://findify.io/")
)
)