You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by ki...@apache.org on 2022/08/22 03:48:40 UTC

[incubator-seatunnel] branch dev updated: [imporve] fix mistake and duplicate dependency (#2484)

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

kirs pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-seatunnel.git


The following commit(s) were added to refs/heads/dev by this push:
     new 7429707d6 [imporve] fix mistake and duplicate dependency (#2484)
7429707d6 is described below

commit 7429707d6800f3b030f14c4fa5fc16adb30d5ff4
Author: Laglangyue <35...@users.noreply.github.com>
AuthorDate: Mon Aug 22 11:48:33 2022 +0800

    [imporve] fix mistake and duplicate dependency (#2484)
    
    
    Co-authored-by: tangjiafu <ta...@corp.netease.com>
---
 pom.xml                                                | 2 +-
 seatunnel-api/pom.xml                                  | 4 ----
 seatunnel-dist/release-docs/LICENSE                    | 1 -
 seatunnel-e2e/pom.xml                                  | 6 +++++-
 seatunnel-e2e/seatunnel-flink-connector-v2-e2e/pom.xml | 6 ------
 seatunnel-e2e/seatunnel-flink-e2e/pom.xml              | 6 ------
 seatunnel-e2e/seatunnel-flink-sql-e2e/pom.xml          | 5 -----
 seatunnel-e2e/seatunnel-spark-e2e/pom.xml              | 5 -----
 tools/dependencies/known-dependencies.txt              | 1 -
 9 files changed, 6 insertions(+), 30 deletions(-)

diff --git a/pom.xml b/pom.xml
index 4679fa7f6..cf65b3073 100644
--- a/pom.xml
+++ b/pom.xml
@@ -762,7 +762,7 @@
             </dependency>
             <dependency>
                 <groupId>org.codehaus.jackson</groupId>
-                <artifactId>jackson-mapper-</artifactId>
+                <artifactId>jackson-mapper-asl</artifactId>
                 <version>${codehaus.jackson.version}</version>
             </dependency>
             <dependency>
diff --git a/seatunnel-api/pom.xml b/seatunnel-api/pom.xml
index 058e240cf..9c6a62266 100644
--- a/seatunnel-api/pom.xml
+++ b/seatunnel-api/pom.xml
@@ -38,10 +38,6 @@
             <artifactId>seatunnel-common</artifactId>
             <version>${project.version}</version>
         </dependency>
-        <dependency>
-            <groupId>org.junit.jupiter</groupId>
-            <artifactId>junit-jupiter-engine</artifactId>
-        </dependency>
         <dependency>
             <groupId>com.fasterxml.jackson.dataformat</groupId>
             <artifactId>jackson-dataformat-properties</artifactId>
diff --git a/seatunnel-dist/release-docs/LICENSE b/seatunnel-dist/release-docs/LICENSE
index 090806a09..bb1745d18 100644
--- a/seatunnel-dist/release-docs/LICENSE
+++ b/seatunnel-dist/release-docs/LICENSE
@@ -876,7 +876,6 @@ The text of each license is the standard Apache 2.0 license.
      (Apache License, Version 2.0) Hadoop Metrics2 Reporter for Dropwizard Metrics (com.github.joshelser:dropwizard-metrics-hadoop-metrics2-reporter:0.1.2 - https://github.com/joshelser/dropwizard-hadoop-metrics2)
      (The Apache Software License, Version 2.0) Apache Ivy (org.apache.ivy:ivy:2.4.0 - http://ant.apache.org/ivy/)
      (The Apache Software License, Version 2.0) Apache Thrift (org.apache.thrift:libfb303:0.9.3 - http://thrift.apache.org)
-     (The Apache Software License, Version 2.0) Data Mapper for Jackson (org.codehaus.jackson:jackson-mapper-asl:1.8.13 - http://jackson.codehaus.org)
      (Apache Software License - Version 2.0) Jettison (org.codehaus.jettison:jettison:1.1 - nhttps://mvnrepository.com/artifact/org.codehaus.jettison/jettison)
      (Apache Software License - Version 2.0) (Eclipse Public License - Version 1.0) Jetty Orbit :: Servlet API (org.eclipse.jetty.orbit:javax.servlet:3.0.0.v201112011016 - http://www.eclipse.org/jetty/jetty-orbit/javax.servlet)
      (Apache Software License - Version 2.0) (Eclipse Public License - Version 1.0) Jetty Server (org.mortbay.jetty:jetty:6.1.26 - http://www.eclipse.org/jetty/jetty-parent/project/modules/jetty)
diff --git a/seatunnel-e2e/pom.xml b/seatunnel-e2e/pom.xml
index 32c6e4369..c9b0b975a 100644
--- a/seatunnel-e2e/pom.xml
+++ b/seatunnel-e2e/pom.xml
@@ -42,7 +42,11 @@
             <groupId>org.testcontainers</groupId>
             <artifactId>testcontainers</artifactId>
         </dependency>
-
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-log4j12</artifactId>
+            <scope>test</scope>
+        </dependency>
         <!-- Testcontainers 1.x is tightly coupled with the JUnit 4.x rule API-->
         <dependency>
             <groupId>junit</groupId>
diff --git a/seatunnel-e2e/seatunnel-flink-connector-v2-e2e/pom.xml b/seatunnel-e2e/seatunnel-flink-connector-v2-e2e/pom.xml
index ffde5c595..36df6d0d0 100644
--- a/seatunnel-e2e/seatunnel-flink-connector-v2-e2e/pom.xml
+++ b/seatunnel-e2e/seatunnel-flink-connector-v2-e2e/pom.xml
@@ -36,12 +36,6 @@
             <artifactId>seatunnel-connectors-v2-dist</artifactId>
             <version>${project.version}</version>
         </dependency>
-
-        <dependency>
-            <groupId>org.testcontainers</groupId>
-            <artifactId>testcontainers</artifactId>
-        </dependency>
-
         <dependency>
             <groupId>org.testcontainers</groupId>
             <artifactId>postgresql</artifactId>
diff --git a/seatunnel-e2e/seatunnel-flink-e2e/pom.xml b/seatunnel-e2e/seatunnel-flink-e2e/pom.xml
index e3ca433fe..99e57218b 100644
--- a/seatunnel-e2e/seatunnel-flink-e2e/pom.xml
+++ b/seatunnel-e2e/seatunnel-flink-e2e/pom.xml
@@ -37,12 +37,6 @@
             <artifactId>seatunnel-connectors-flink-dist</artifactId>
             <version>${project.version}</version>
         </dependency>
-
-        <dependency>
-            <groupId>org.slf4j</groupId>
-            <artifactId>slf4j-log4j12</artifactId>
-            <scope>test</scope>
-        </dependency>
     </dependencies>
 
 </project>
\ No newline at end of file
diff --git a/seatunnel-e2e/seatunnel-flink-sql-e2e/pom.xml b/seatunnel-e2e/seatunnel-flink-sql-e2e/pom.xml
index 4cb8ca086..e3db7da71 100644
--- a/seatunnel-e2e/seatunnel-flink-sql-e2e/pom.xml
+++ b/seatunnel-e2e/seatunnel-flink-sql-e2e/pom.xml
@@ -37,11 +37,6 @@
             <version>${project.version}</version>
         </dependency>
 
-        <dependency>
-            <groupId>org.slf4j</groupId>
-            <artifactId>slf4j-log4j12</artifactId>
-            <scope>test</scope>
-        </dependency>
     </dependencies>
 
 </project>
\ No newline at end of file
diff --git a/seatunnel-e2e/seatunnel-spark-e2e/pom.xml b/seatunnel-e2e/seatunnel-spark-e2e/pom.xml
index 44a5d54d0..ca1c64647 100644
--- a/seatunnel-e2e/seatunnel-spark-e2e/pom.xml
+++ b/seatunnel-e2e/seatunnel-spark-e2e/pom.xml
@@ -38,11 +38,6 @@
             <version>${project.version}</version>
         </dependency>
 
-        <dependency>
-            <groupId>org.slf4j</groupId>
-            <artifactId>slf4j-log4j12</artifactId>
-            <scope>test</scope>
-        </dependency>
         <dependency>
             <groupId>org.testcontainers</groupId>
             <artifactId>postgresql</artifactId>
diff --git a/tools/dependencies/known-dependencies.txt b/tools/dependencies/known-dependencies.txt
index 4db58ce61..172b11d80 100755
--- a/tools/dependencies/known-dependencies.txt
+++ b/tools/dependencies/known-dependencies.txt
@@ -305,7 +305,6 @@ jackson-jaxrs-json-provider-2.7.8.jar
 jackson-jaxrs-smile-provider-2.10.5.jar
 jackson-jq-0.0.10.jar
 jackson-mapper-asl-1.9.13.jar
-jackson-mapper-asl-1.9.2.jar
 jackson-module-guice-2.10.5.jar
 jackson-module-jaxb-annotations-2.10.5.jar
 jackson-module-jaxb-annotations-2.7.8.jar