FANNG1 commented on code in PR #5818:
URL: https://github.com/apache/gravitino/pull/5818#discussion_r1910189156
##########
flink-connector/flink/build.gradle.kts:
##########
@@ -37,15 +38,22 @@ val flinkMajorVersion: String =
flinkVersion.substringBeforeLast(".")
val scalaVersion: String = "2.12"
val artifactName =
"${rootProject.name}-flink-${flinkMajorVersion}_$scalaVersion"
+tasks.compileJava {
+ dependsOn(":catalogs:catalog-lakehouse-paimon:runtimeJars")
+}
+
dependencies {
+ implementation(project(":core"))
implementation(project(":catalogs:catalog-common"))
+
implementation(libs.guava)
compileOnly(project(":clients:client-java-runtime", configuration =
"shadow"))
-
+ compileOnly(project(":catalogs:catalog-lakehouse-paimon"))
Review Comment:
It's odd to add dependencies to `:catalogs:catalog-lakehouse-paimon` for
flink connector, it's a internal module of Gravitino server
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]