This is an automated email from the ASF dual-hosted git repository.
kirs pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 70922604242 [chore](test)Exclude Hive-related packages from
`java-udf-src`. (#40757)
70922604242 is described below
commit 70922604242b0dca279682906b70b71328805b24
Author: Calvin Kirs <[email protected]>
AuthorDate: Fri Sep 13 10:52:32 2024 +0800
[chore](test)Exclude Hive-related packages from `java-udf-src`. (#40757)
Some dependencies in these packages might conflict with the core, as the
core already includes these two packages. Therefore, exclude
Hive-related packages from the build.
## Proposed changes
Issue Number: close #xxx
<!--Describe your changes.-->
---
regression-test/java-udf-src/pom.xml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/regression-test/java-udf-src/pom.xml
b/regression-test/java-udf-src/pom.xml
index 1967e4f0e1f..388bf795e1e 100644
--- a/regression-test/java-udf-src/pom.xml
+++ b/regression-test/java-udf-src/pom.xml
@@ -45,11 +45,13 @@ under the License.
<artifactId>hive-exec</artifactId>
<classifier>core</classifier>
<version>${hive.version}</version>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.hive</groupId>
<artifactId>hive-serde</artifactId>
<version>${hive.version}</version>
+ <scope>provided</scope>
</dependency>
</dependencies>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]