This is an automated email from the ASF dual-hosted git repository.
jiangmaolin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git
The following commit(s) were added to refs/heads/master by this push:
new 8479e2f543d Fixes the missing `slf4j-api` JAR for
`shardingsphere-agent-core` (#37653)
8479e2f543d is described below
commit 8479e2f543dd6732897a087abd76d40cd6a6d1db
Author: Ling Hengqian <[email protected]>
AuthorDate: Tue Jan 6 15:39:05 2026 +0800
Fixes the missing `slf4j-api` JAR for `shardingsphere-agent-core` (#37653)
---
agent/core/pom.xml | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/agent/core/pom.xml b/agent/core/pom.xml
index 18493c8071a..28e1ab93feb 100644
--- a/agent/core/pom.xml
+++ b/agent/core/pom.xml
@@ -46,6 +46,11 @@
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
</dependencies>
<build>