You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by rz...@apache.org on 2022/04/06 08:28:21 UTC

[tomee] branch master updated: Exclude transient dependency, which will be available at runtime but cannot be resolved by the build environment

This is an automated email from the ASF dual-hosted git repository.

rzo1 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee.git


The following commit(s) were added to refs/heads/master by this push:
     new c6ed9b98c0 Exclude transient dependency, which will be available at runtime but cannot be resolved by the build environment
c6ed9b98c0 is described below

commit c6ed9b98c0f67ae49d859052ef79886a9e9b8d8b
Author: Richard Zowalla <rz...@apache.org>
AuthorDate: Wed Apr 6 10:28:10 2022 +0200

    Exclude transient dependency, which will be available at runtime but cannot be resolved by the build environment
---
 deps/cxf-shade/pom.xml | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/deps/cxf-shade/pom.xml b/deps/cxf-shade/pom.xml
index 20fdee9d4f..cd5e95f9fa 100644
--- a/deps/cxf-shade/pom.xml
+++ b/deps/cxf-shade/pom.xml
@@ -115,6 +115,13 @@
       <groupId>org.apache.cxf</groupId>
       <artifactId>cxf-rt-ws-security</artifactId>
       <version>${cxf.version}</version>
+      <exclusions>
+        <!-- Exclude some weird transient dependency to jaxb-runtime from ehcache -->
+        <exclusion>
+          <groupId>org.glassfish.jaxb</groupId>
+          <artifactId>jaxb-runtime</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.cxf</groupId>