This is an automated email from the ASF dual-hosted git repository. dacort pushed a commit to branch fix/remove-catx-licenses in repository https://gitbox.apache.org/repos/asf/incubator-livy.git
commit f9bfe7436fb289f42385990226e80669e769d419 Author: Damon P. Cortesi <[email protected]> AuthorDate: Mon Aug 14 23:09:55 2023 -0700 Remove jaxb-api --- api/pom.xml | 6 ++++++ integration-test/pom.xml | 15 +++++++++++++++ repl/pom.xml | 4 ++++ rsc/pom.xml | 12 ++++++++++++ scala-api/pom.xml | 6 ++++++ server/pom.xml | 4 ++++ test-lib/pom.xml | 6 ++++++ 7 files changed, 53 insertions(+) diff --git a/api/pom.xml b/api/pom.xml index 4d58e74d..641d7299 100644 --- a/api/pom.xml +++ b/api/pom.xml @@ -37,6 +37,12 @@ <groupId>org.apache.spark</groupId> <artifactId>spark-core_${scala.binary.version}</artifactId> <scope>provided</scope> + <exclusions> + <exclusion> + <groupId>javax.xml.bind</groupId> + <artifactId>jaxb-api</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.spark</groupId> diff --git a/integration-test/pom.xml b/integration-test/pom.xml index 37fb8ff2..b9202ad3 100644 --- a/integration-test/pom.xml +++ b/integration-test/pom.xml @@ -108,6 +108,10 @@ <groupId>org.apache.zookeeper</groupId> <artifactId>zookeeper</artifactId> </exclusion> + <exclusion> + <groupId>javax.xml.bind</groupId> + <artifactId>jaxb-api</artifactId> + </exclusion> </exclusions> </dependency> @@ -120,6 +124,13 @@ <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-yarn-client</artifactId> + <scope>test</scope> + <exclusions> + <exclusion> + <groupId>javax.xml.bind</groupId> + <artifactId>jaxb-api</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> @@ -142,6 +153,10 @@ <groupId>org.apache.zookeeper</groupId> <artifactId>zookeeper</artifactId> </exclusion> + <exclusion> + <groupId>javax.xml.bind</groupId> + <artifactId>jaxb-api</artifactId> + </exclusion> </exclusions> </dependency> diff --git a/repl/pom.xml b/repl/pom.xml index c8f3f30a..ec74af22 100644 --- a/repl/pom.xml +++ b/repl/pom.xml @@ -109,6 +109,10 @@ <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </exclusion> + <exclusion> + <groupId>javax.xml.bind</groupId> + <artifactId>jaxb-api</artifactId> + </exclusion> </exclusions> </dependency> diff --git a/rsc/pom.xml b/rsc/pom.xml index 66b778a9..607fda8e 100644 --- a/rsc/pom.xml +++ b/rsc/pom.xml @@ -95,6 +95,12 @@ <groupId>org.apache.spark</groupId> <artifactId>spark-core_${scala.binary.version}</artifactId> <scope>provided</scope> + <exclusions> + <exclusion> + <groupId>javax.xml.bind</groupId> + <artifactId>jaxb-api</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.spark</groupId> @@ -115,6 +121,12 @@ <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-common</artifactId> <scope>provided</scope> + <exclusions> + <exclusion> + <groupId>javax.xml.bind</groupId> + <artifactId>jaxb-api</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId> diff --git a/scala-api/pom.xml b/scala-api/pom.xml index af21f36e..b2860384 100644 --- a/scala-api/pom.xml +++ b/scala-api/pom.xml @@ -72,6 +72,12 @@ <groupId>org.apache.spark</groupId> <artifactId>spark-core_${scala.binary.version}</artifactId> <scope>provided</scope> + <exclusions> + <exclusion> + <groupId>javax.xml.bind</groupId> + <artifactId>jaxb-api</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.spark</groupId> diff --git a/server/pom.xml b/server/pom.xml index 12b46cac..c2024cfa 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -121,6 +121,10 @@ <groupId>com.sun.jersey</groupId> <artifactId>jersey-core</artifactId> </exclusion> + <exclusion> + <groupId>javax.xml.bind</groupId> + <artifactId>jaxb-api</artifactId> + </exclusion> </exclusions> <scope>${hadoop.scope}</scope> </dependency> diff --git a/test-lib/pom.xml b/test-lib/pom.xml index dd299f1a..d239c47d 100644 --- a/test-lib/pom.xml +++ b/test-lib/pom.xml @@ -43,6 +43,12 @@ <groupId>org.apache.spark</groupId> <artifactId>spark-core_${scala.binary.version}</artifactId> <scope>provided</scope> + <exclusions> + <exclusion> + <groupId>javax.xml.bind</groupId> + <artifactId>jaxb-api</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.spark</groupId>
