-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
20 lines (18 loc) · 919 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name := "flink-cdc-pipeline-connector-phaker"
idePackagePrefix := Some("io.github.yuxiqian.phaker")
version := "0.1.0-SNAPSHOT"
scalaVersion := "2.12.19"
val flinkVersion = "1.20.0"
val flinkCdcVersion = "3.2.0"
libraryDependencies ++= Seq(
"org.apache.flink" % "flink-runtime" % flinkVersion % "provided",
"org.apache.flink" % "flink-streaming-java" % flinkVersion % "provided",
"org.apache.flink" % "flink-cdc-common" % flinkCdcVersion,
"org.apache.flink" % "flink-cdc-runtime" % flinkCdcVersion,
"org.scalatest" %% "scalatest" % "3.2.19" % Test,
"org.apache.flink" % "flink-clients" % flinkVersion % Test,
"org.apache.flink" % "flink-streaming-java" % flinkVersion % Test,
"org.apache.flink" %% "flink-table-planner" % flinkVersion % Test,
"org.apache.flink" % "flink-cdc-composer" % flinkCdcVersion % Test,
"org.apache.flink" % "flink-cdc-pipeline-connector-values" % flinkCdcVersion % Test
)