You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by pd...@apache.org on 2021/09/29 16:27:32 UTC

[zeppelin] branch master updated: [ZEPPELIN-5541] Remove maven-dependency-plugin from pom.xml where it not necessary

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

pdallig pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zeppelin.git


The following commit(s) were added to refs/heads/master by this push:
     new 9174db5  [ZEPPELIN-5541] Remove maven-dependency-plugin from pom.xml where it not necessary
9174db5 is described below

commit 9174db58c2a68f9bedfaf8c442055e04daa95bd9
Author: Philipp Dallig <ph...@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 <ph...@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
---
 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 04c9e9e..d970540 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 9ac17fa..34a92c3 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 8779cfd..2e9a33f 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 06f28a8..fdbc678 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>