-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.sbt
26 lines (22 loc) · 798 Bytes
/
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
val scala3Version = "3.0.0-RC3"
lazy val root = project
.in(file("."))
.settings(
name := "statefun-scala3",
version := "0.1.0",
scalaVersion := scala3Version,
libraryDependencies ++= Seq(
"org.apache.flink" % "statefun-sdk-java" % "3.0.0",
"io.circe" %% "circe-core" % "0.14.0-M6",
"io.circe" %% "circe-parser" % "0.14.0-M6",
"io.circe" %% "circe-generic" % "0.14.0-M6",
"io.undertow" % "undertow-core" % "2.2.7.Final",
"dev.zio" %% "zio" % "1.0.7",
"org.apache.kafka" % "kafka-clients" % "2.8.0",
// Testing
"org.testcontainers" % "testcontainers" % "1.15.3" % Test,
"org.testcontainers" % "kafka" % "1.15.3" % Test,
"org.scalameta" %% "munit" % "0.7.25" % Test
)
)
enablePlugins(DockerComposePlugin)