This is an automated email from the ASF dual-hosted git repository.
luoyuxia pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fluss.git
The following commit(s) were added to refs/heads/main by this push:
new 10a4c5167 [ci] Optimize the log prompt of NoticeFileChecker (#3268)
10a4c5167 is described below
commit 10a4c51678300ee76543d0e63961cd30bf6d9c65
Author: Tom <[email protected]>
AuthorDate: Fri May 8 14:51:27 2026 +0800
[ci] Optimize the log prompt of NoticeFileChecker (#3268)
---
.../main/java/org/apache/fluss/tools/ci/utils/shared/Dependency.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/tools/ci/fluss-ci-tools/src/main/java/org/apache/fluss/tools/ci/utils/shared/Dependency.java
b/tools/ci/fluss-ci-tools/src/main/java/org/apache/fluss/tools/ci/utils/shared/Dependency.java
index c88ec3ba0..e590d1dd0 100644
---
a/tools/ci/fluss-ci-tools/src/main/java/org/apache/fluss/tools/ci/utils/shared/Dependency.java
+++
b/tools/ci/fluss-ci-tools/src/main/java/org/apache/fluss/tools/ci/utils/shared/Dependency.java
@@ -104,8 +104,8 @@ public final class Dependency {
+ ":"
+ artifactId
+ ":"
+ + (classifier != null ? classifier + ":" : "")
+ version
- + (classifier != null ? ":" + classifier : "")
+ (scope != null ? ":" + scope : "")
+ (isOptional != null && isOptional ? " (optional)" : "");
}