Skip to content

Commit

Permalink
Refactor project
Browse files Browse the repository at this point in the history
  • Loading branch information
yuxiqian committed Aug 14, 2024
1 parent 3a018e0 commit a4002ff
Show file tree
Hide file tree
Showing 13 changed files with 20 additions and 1 deletion.
1 change: 1 addition & 0 deletions .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
version = 2.7.5
17 changes: 17 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name := "flink-cdc-pipeline-connector-phaker"
idePackagePrefix := Some("io.github.yuxiqian.phaker")
version := "0.1.0-SNAPSHOT"
scalaVersion := "2.12.19"

val flinkVersion = "1.18.1"
val flinkCdcVersion = "3.1.1"

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
)

This file was deleted.

1 change: 1 addition & 0 deletions project/build.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sbt.version = 1.10.1
1 change: 1 addition & 0 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
addSbtPlugin("org.jetbrains.scala" % "sbt-ide-settings" % "1.1.2")
File renamed without changes.
File renamed without changes.

0 comments on commit a4002ff

Please sign in to comment.