This is an automated email from the ASF dual-hosted git repository.
fanng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/main by this push:
new 14df45f86 [HOTFIX]fix(build): Fix flink connector artifact name (#4491)
14df45f86 is described below
commit 14df45f862bcbff6e221da4322e0354212398785
Author: Peidian li <[email protected]>
AuthorDate: Mon Aug 12 19:49:55 2024 +0800
[HOTFIX]fix(build): Fix flink connector artifact name (#4491)
### What changes were proposed in this pull request?
- fix the flink-connector artifact name
### Why are the changes needed?
- fix the flink-connector artifact name
### Does this PR introduce _any_ user-facing change?
- no
### How was this patch tested?
- ./gradlew clean flink-connector:build

---
flink-connector/build.gradle.kts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/flink-connector/build.gradle.kts b/flink-connector/build.gradle.kts
index a21dea4a1..169b5f809 100644
--- a/flink-connector/build.gradle.kts
+++ b/flink-connector/build.gradle.kts
@@ -34,7 +34,7 @@ val flinkVersion: String = libs.versions.flink.get()
// https://issues.apache.org/jira/browse/FLINK-20845,
// https://issues.apache.org/jira/browse/FLINK-13414.
val scalaVersion: String = "2.12"
-val artifactName = "gravitino-${project.name}-$scalaVersion"
+val artifactName = "gravitino-${project.name}_$scalaVersion"
dependencies {
implementation(project(":api"))