This is an automated email from the ASF dual-hosted git repository. dzamo pushed a commit to branch 1.20 in repository https://gitbox.apache.org/repos/asf/drill.git
commit 5218a74fc899caf72b6ea57c2765aac05e7519b7 Author: PJ Fanning <[email protected]> AuthorDate: Tue Jul 19 21:26:30 2022 +0100 DRILL-8264: remove xalan dependency --- exec/java-exec/pom.xml | 4 ---- exec/jdbc/pom.xml | 6 +----- pom.xml | 39 +++++++++------------------------------ 3 files changed, 10 insertions(+), 39 deletions(-) diff --git a/exec/java-exec/pom.xml b/exec/java-exec/pom.xml index 125edd30dd..74974047a6 100644 --- a/exec/java-exec/pom.xml +++ b/exec/java-exec/pom.xml @@ -139,10 +139,6 @@ <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> </dependency> - <dependency> - <groupId>xalan</groupId> - <artifactId>xalan</artifactId> - </dependency> <dependency> <groupId>com.sun.codemodel</groupId> <artifactId>codemodel</artifactId> diff --git a/exec/jdbc/pom.xml b/exec/jdbc/pom.xml index 389b36ba33..6b898c6f34 100644 --- a/exec/jdbc/pom.xml +++ b/exec/jdbc/pom.xml @@ -72,15 +72,11 @@ <artifactId>sqlline</artifactId> <scope>test</scope> </dependency> - <!-- Specify xalan and xerces versions to avoid setXIncludeAware error. --> + <!-- Specify xerces versions to avoid setXIncludeAware error. --> <dependency> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> </dependency> - <dependency> - <groupId>xalan</groupId> - <artifactId>xalan</artifactId> - </dependency> <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> diff --git a/pom.xml b/pom.xml index 65dd0829f2..30c81e0283 100644 --- a/pom.xml +++ b/pom.xml @@ -129,7 +129,6 @@ <testcontainers.version>1.16.3</testcontainers.version> <typesafe.config.version>1.0.0</typesafe.config.version> <commons.codec.version>1.14</commons.codec.version> - <xalan.version>2.7.2</xalan.version> <xerces.version>2.12.2</xerces.version> <commons.configuration.version>1.10</commons.configuration.version> <commons.beanutils.version>1.9.4</commons.beanutils.version> @@ -1973,11 +1972,6 @@ <artifactId>xercesImpl</artifactId> <version>${xerces.version}</version> </dependency> - <dependency> - <groupId>xalan</groupId> - <artifactId>xalan</artifactId> - <version>${xalan.version}</version> - </dependency> <dependency> <groupId>commons-configuration</groupId> <artifactId>commons-configuration</artifactId> @@ -2761,11 +2755,6 @@ <artifactId>xercesImpl</artifactId> <version>${xerces.version}</version> </dependency> - <dependency> - <groupId>xalan</groupId> - <artifactId>xalan</artifactId> - <version>${xalan.version}</version> - </dependency> <dependency> <groupId>net.sf.jpam</groupId> <artifactId>jpam</artifactId> @@ -3135,20 +3124,15 @@ <version>${xerces.version}</version> </dependency> <dependency> - <groupId>xalan</groupId> - <artifactId>xalan</artifactId> - <version>${xalan.version}</version> - </dependency> - <dependency> - <groupId>org.apache.parquet</groupId> - <artifactId>parquet-hadoop</artifactId> - <version>${parquet.version}</version> - <exclusions> - <exclusion> - <groupId>org.xerial.snappy</groupId> - <artifactId>snappy-java</artifactId> - </exclusion> - </exclusions> + <groupId>org.apache.parquet</groupId> + <artifactId>parquet-hadoop</artifactId> + <version>${parquet.version}</version> + <exclusions> + <exclusion> + <groupId>org.xerial.snappy</groupId> + <artifactId>snappy-java</artifactId> + </exclusion> + </exclusions> </dependency> <!-- Test Dependencies --> <dependency> @@ -4030,11 +4014,6 @@ <artifactId>xercesImpl</artifactId> <version>${xerces.version}</version> </dependency> - <dependency> - <groupId>xalan</groupId> - <artifactId>xalan</artifactId> - <version>${xalan.version}</version> - </dependency> <dependency> <groupId>org.apache.parquet</groupId> <artifactId>parquet-hadoop</artifactId>
