This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch branch-4.1
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-4.1 by this push:
new 43ed21eb7e4 branch-4.1: [fix](build) Exclude javax.resource:connector
from BDB JE dependency #66566 (#66569)
43ed21eb7e4 is described below
commit 43ed21eb7e4f78073a57ec1bc7568f0bb5242ef5
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sat Aug 8 01:46:39 2026 +0800
branch-4.1: [fix](build) Exclude javax.resource:connector from BDB JE
dependency #66566 (#66569)
Cherry-picked from #66566
Co-authored-by: zhiqiang <[email protected]>
Co-authored-by: Claude Opus 4.8 (1M context) <[email protected]>
---
fe/pom.xml | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/fe/pom.xml b/fe/pom.xml
index ef84e3e2145..3783d2660e6 100644
--- a/fe/pom.xml
+++ b/fe/pom.xml
@@ -899,6 +899,15 @@ under the License.
<groupId>org.checkerframework</groupId>
<artifactId>checker</artifactId>
</exclusion>
+ <!-- BDB JE only references javax.resource in its optional
JCA resource
+ adapter (com.sleepycat.je.jca.ra), which embedded FE
never uses.
+ javax.resource:connector:1.0 has no jar in Maven
Central (only a pom)
+ and its historical host (repo.grails.org) is
unreliable, so pulling it
+ breaks the build in many environments. Exclude it. -->
+ <exclusion>
+ <groupId>javax.resource</groupId>
+ <artifactId>connector</artifactId>
+ </exclusion>
</exclusions>
</dependency>
<!-- https://mvnrepository.com/artifact/org.jmockit/jmockit -->
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]