-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathbuild.sbt
33 lines (26 loc) · 1.07 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
import Dependencies._
lazy val root = (project in file(".")).
settings(
inThisBuild(List(
organization := "com.example",
scalaVersion := "2.12.5",
version := "0.1.0-SNAPSHOT"
)),
name := "scalaccloud",
resolvers ++= Seq (
Opts.resolver.mavenLocalFile,
"Confluent" at "http://packages.confluent.io/maven"
),
libraryDependencies ++= Seq(
"com.typesafe" % "config" % "1.3.2",
"org.apache.kafka" % "kafka-clients" % "2.4.0",
"org.apache.kafka" % "connect-json" % "2.4.0",
"org.apache.kafka" % "connect-runtime" % "2.4.0",
"org.apache.kafka" % "kafka-streams" % "2.4.0",
"org.apache.kafka" %% "kafka-streams-scala" % "2.4.0",
"com.fasterxml.jackson.core" % "jackson-databind" % "2.8.5",
"org.apache.kafka" % "connect-runtime" % "2.1.0",
"io.confluent" % "kafka-json-serializer" % "5.0.1",
"javax.ws.rs" % "javax.ws.rs-api" % "2.1.1" artifacts( Artifact("javax.ws.rs-api", "jar", "jar")) // this is a workaround for https://github.com/jax-rs/api/issues/571
)
)