This is an automated email from the ASF dual-hosted git repository. pdallig pushed a commit to branch branch-0.10 in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/branch-0.10 by this push: new bce9d16 [ZEPPELIN-5541] Remove maven-dependency-plugin from pom.xml where it not necessary bce9d16 is described below commit bce9d16200a7eeb6c6c308fc7d4cd1f1b03f8f24 Author: Philipp Dallig <philipp.dal...@gmail.com> AuthorDate: Wed Sep 30 15:46:32 2020 +0200 [ZEPPELIN-5541] Remove maven-dependency-plugin from pom.xml where it not necessary ### What is this PR for? This PR removes unnecessary calls of maven-dependency-plugin. ### What type of PR is it? - Improvement ### What is the Jira issue? * https://issues.apache.org/jira/browse/ZEPPELIN-5541 ### How should this be tested? * CI ### Questions: * Does the licenses files need update? No * Is there breaking changes for older versions? No * Does this needs documentation? No Author: Philipp Dallig <philipp.dal...@gmail.com> Closes #4235 from Reamer/maven-dependency-plugin and squashes the following commits: 33ece9faf [Philipp Dallig] Remove maven-dependency-plugin from pom.xml where it not necessary (cherry picked from commit 9174db58c2a68f9bedfaf8c442055e04daa95bd9) Signed-off-by: Philipp Dallig <philipp.dal...@gmail.com> --- flink/flink-scala-parent/pom.xml | 3 --- helium-dev/pom.xml | 3 --- spark/interpreter/pom.xml | 54 ---------------------------------------- zeppelin-interpreter/pom.xml | 6 ----- 4 files changed, 66 deletions(-) diff --git a/flink/flink-scala-parent/pom.xml b/flink/flink-scala-parent/pom.xml index 1b315a7..a539e10 100644 --- a/flink/flink-scala-parent/pom.xml +++ b/flink/flink-scala-parent/pom.xml @@ -862,9 +862,6 @@ <plugin> <artifactId>maven-enforcer-plugin</artifactId> </plugin> - <plugin> - <artifactId>maven-dependency-plugin</artifactId> - </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> diff --git a/helium-dev/pom.xml b/helium-dev/pom.xml index 57f2a9c..5caa6fe 100644 --- a/helium-dev/pom.xml +++ b/helium-dev/pom.xml @@ -49,9 +49,6 @@ <artifactId>maven-enforcer-plugin</artifactId> </plugin> <plugin> - <artifactId>maven-dependency-plugin</artifactId> - </plugin> - <plugin> <artifactId>maven-resources-plugin</artifactId> </plugin> </plugins> diff --git a/spark/interpreter/pom.xml b/spark/interpreter/pom.xml index 697f7d2..e11b8cb 100644 --- a/spark/interpreter/pom.xml +++ b/spark/interpreter/pom.xml @@ -517,60 +517,6 @@ </execution> </executions> </plugin> - - - <plugin> - <artifactId>maven-dependency-plugin</artifactId> - <executions> - <execution> - <id>copy-dependencies</id> - <phase>none</phase> - <configuration> - <skip>true</skip> - </configuration> - </execution> - - <execution> - <id>copy-interpreter-dependencies</id> - <phase>none</phase> - <configuration> - <skip>true</skip> - </configuration> - </execution> - <execution> - <id>copy-artifact</id> - <phase>none</phase> - <configuration> - <skip>true</skip> - </configuration> - </execution> - - - <execution> - <id>copy-spark-interpreter</id> - <phase>package</phase> - <goals> - <goal>copy</goal> - </goals> - <configuration> - <outputDirectory>${project.build.directory}/../../../interpreter/spark</outputDirectory> - <overWriteReleases>false</overWriteReleases> - <overWriteSnapshots>false</overWriteSnapshots> - <overWriteIfNewer>true</overWriteIfNewer> - <artifactItems> - <artifactItem> - <groupId>${project.groupId}</groupId> - <artifactId>${project.artifactId}</artifactId> - <version>${project.version}</version> - <type>${project.packaging}</type> - </artifactItem> - </artifactItems> - </configuration> - </execution> - - </executions> - </plugin> - </plugins> </build> </project> diff --git a/zeppelin-interpreter/pom.xml b/zeppelin-interpreter/pom.xml index 95702b2..6424eff 100644 --- a/zeppelin-interpreter/pom.xml +++ b/zeppelin-interpreter/pom.xml @@ -231,12 +231,6 @@ <filtering>true</filtering> </resource> </resources> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-dependency-plugin</artifactId> - </plugin> - </plugins> </build> </project>