You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by ni...@apache.org on 2022/01/18 03:11:55 UTC

[incubator-seatunnel] branch dev updated: Revert "[SeaTunnel#1021] make maven-shade-plugin only applied to core modules (#1022)" (#1087)

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

nielifeng 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 bbc1f33  Revert "[SeaTunnel#1021] make maven-shade-plugin only applied to core modules (#1022)" (#1087)
bbc1f33 is described below

commit bbc1f3337e5f5da279505a991d2f917372af1e01
Author: Kirs <ac...@163.com>
AuthorDate: Tue Jan 18 11:11:23 2022 +0800

    Revert "[SeaTunnel#1021] make maven-shade-plugin only applied to core modules (#1022)" (#1087)
    
    This reverts commit e0c7fa9a2cf05530630764ac1c6899c1cbd1bda4.
---
 pom.xml                                     |  5 +++++
 seatunnel-core/seatunnel-core-flink/pom.xml |  6 ------
 seatunnel-core/seatunnel-core-spark/pom.xml |  6 ------
 seatunnel-core/seatunnel-core-sql/pom.xml   | 11 -----------
 4 files changed, 5 insertions(+), 23 deletions(-)

diff --git a/pom.xml b/pom.xml
index 15c5aa1..c9dc72c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -791,6 +791,11 @@
 
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-shade-plugin</artifactId>
+            </plugin>
+
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-surefire-plugin</artifactId>
             </plugin>
 
diff --git a/seatunnel-core/seatunnel-core-flink/pom.xml b/seatunnel-core/seatunnel-core-flink/pom.xml
index 213edb8..bbb819a 100644
--- a/seatunnel-core/seatunnel-core-flink/pom.xml
+++ b/seatunnel-core/seatunnel-core-flink/pom.xml
@@ -124,12 +124,6 @@
 
     <build>
         <finalName>${project.name}</finalName>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-shade-plugin</artifactId>
-            </plugin>
-        </plugins>
     </build>
 
     <profiles>
diff --git a/seatunnel-core/seatunnel-core-spark/pom.xml b/seatunnel-core/seatunnel-core-spark/pom.xml
index b8ac55e..bde5f98 100644
--- a/seatunnel-core/seatunnel-core-spark/pom.xml
+++ b/seatunnel-core/seatunnel-core-spark/pom.xml
@@ -175,12 +175,6 @@
 
     <build>
         <finalName>${project.name}</finalName>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-shade-plugin</artifactId>
-            </plugin>
-        </plugins>
     </build>
 
     <profiles>
diff --git a/seatunnel-core/seatunnel-core-sql/pom.xml b/seatunnel-core/seatunnel-core-sql/pom.xml
index db70c43..53c46ee 100644
--- a/seatunnel-core/seatunnel-core-sql/pom.xml
+++ b/seatunnel-core/seatunnel-core-sql/pom.xml
@@ -71,15 +71,4 @@
             <artifactId>junit</artifactId>
         </dependency>
     </dependencies>
-
-    <build>
-        <finalName>${project.name}</finalName>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-shade-plugin</artifactId>
-            </plugin>
-        </plugins>
-    </build>
-
 </project>