1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
From: Mechtilde <mechtilde@debian.org>
Date: Sun, 30 Mar 2025 13:57:28 +0200
Subject: 04_Remove maven-dependency-plugin from pom.xml
Forwarded: No
Last-Update: 2019-10-01
---
pom.xml | 17 -----------------
1 file changed, 17 deletions(-)
diff --git a/pom.xml b/pom.xml
index e9cce86..22d31e0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -144,23 +144,6 @@
-->
</resources>
<plugins>
- <!-- Copy the project's dependencies into a folder -->
- <plugin>
- <artifactId>maven-dependency-plugin</artifactId>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>copy-dependencies</goal>
- </goals>
- <configuration>
- <!-- do not copy unit test dependencies -->
- <includeScope>compile</includeScope>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
<!-- Create a source code JAR -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
|