This is an automated email from the ASF dual-hosted git repository. kirs pushed a commit to branch revert-1022-issue1021 in repository https://gitbox.apache.org/repos/asf/incubator-seatunnel.git
commit a1e73972a834de5463a4abb3038d2c17702c42e1 Author: Kirs <[email protected]> AuthorDate: Tue Jan 18 11:06:05 2022 +0800 Revert "[SeaTunnel#1021] make maven-shade-plugin only applied to core modules (#1022)" 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>
