-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
20 lines (16 loc) · 857 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / scalaVersion := "2.13.10"
resolvers += "Confluent Maven Repo" at "https://packages.confluent.io/maven/"
libraryDependencies += "org.apache.spark" %% "spark-core" % "3.2.0"
libraryDependencies += "org.apache.spark" %% "spark-sql" % "3.2.0"
libraryDependencies += "com.fasterxml.jackson.core" % "jackson-databind" % "2.12.2"
libraryDependencies += "io.circe" %% "circe-core" % "0.14.5"
libraryDependencies += "io.circe" %% "circe-generic" % "0.14.5"
libraryDependencies += "io.circe" %% "circe-parser" % "0.14.5"
libraryDependencies += "org.apache.kafka" % "kafka-streams" % "3.0.0"
libraryDependencies += "org.apache.kafka" % "kafka-clients" % "3.0.0"
libraryDependencies += "com.discord4j" % "discord4j-core" % "3.1.1"
lazy val root = (project in file("."))
.settings(
name := "PeaceKeeper"
)