This is an automated email from the ASF dual-hosted git repository.
jiayu pushed a commit to branch SEDONA-210-scala-2.12
in repository https://gitbox.apache.org/repos/asf/incubator-sedona.git
The following commit(s) were added to refs/heads/SEDONA-210-scala-2.12 by this
push:
new 3dd549e9 Package Scala-compat dependency to sql module
3dd549e9 is described below
commit 3dd549e9b580900772f8951b8bac04eec881a0e2
Author: Jia Yu <[email protected]>
AuthorDate: Fri Dec 9 16:08:33 2022 -0800
Package Scala-compat dependency to sql module
---
pom.xml | 11 -----------
sql/pom.xml | 11 +++++++++++
2 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/pom.xml b/pom.xml
index fb98ba83..1d7f6ac0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -210,17 +210,6 @@
<version>${spark.version}</version>
<scope>${dependency.scope}</scope>
</dependency>
- <dependency>
- <groupId>org.scala-lang.modules</groupId>
-
<artifactId>scala-collection-compat_${scala.compat.version}</artifactId>
- <version>2.5.0</version>
- <exclusions>
- <exclusion>
- <groupId>org.scala-lang</groupId>
- <artifactId>scala-library</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
<!-- Test -->
<dependency>
<groupId>junit</groupId>
diff --git a/sql/pom.xml b/sql/pom.xml
index 925e4863..c580b402 100644
--- a/sql/pom.xml
+++ b/sql/pom.xml
@@ -43,6 +43,17 @@
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
+ <dependency>
+ <groupId>org.scala-lang.modules</groupId>
+
<artifactId>scala-collection-compat_${scala.compat.version}</artifactId>
+ <version>2.5.0</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.scala-lang</groupId>
+ <artifactId>scala-library</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
</dependencies>
<build>
<sourceDirectory>src/main/scala</sourceDirectory>