Skip to content

Commit 8debae2

Browse files
authored
Merge pull request eugenp#5193 from eugenp/mvndep-plugin-cleanup
BAEL-8833: Cleanup the maven-dependency-plugin usage
2 parents d037c59 + 7516e0a commit 8debae2

16 files changed

Lines changed: 0 additions & 265 deletions

File tree

aws-lambda/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@
9595
<gson.version>2.8.2</gson.version>
9696
<aws-java-sdk.version>1.11.241</aws-java-sdk.version>
9797
<maven-shade-plugin.version>3.0.0</maven-shade-plugin.version>
98-
<maven-dependency-plugin.version>2.10</maven-dependency-plugin.version>
9998
</properties>
10099

101100
</project>

aws/pom.xml

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -100,26 +100,6 @@
100100
</execution>
101101
</executions>
102102
</plugin>
103-
104-
<plugin>
105-
<groupId>org.apache.maven.plugins</groupId>
106-
<artifactId>maven-dependency-plugin</artifactId>
107-
<version>${maven-dependency-plugin.version}</version>
108-
<executions>
109-
<execution>
110-
<id>copy-dependencies</id>
111-
<phase>test-compile</phase>
112-
<goals>
113-
<goal>copy-dependencies</goal>
114-
</goals>
115-
<configuration>
116-
<includeScope>test</includeScope>
117-
<includeTypes>so,dll,dylib</includeTypes>
118-
<outputDirectory>${project.basedir}/native-libs</outputDirectory>
119-
</configuration>
120-
</execution>
121-
</executions>
122-
</plugin>
123103
</plugins>
124104
</build>
125105

@@ -144,7 +124,6 @@
144124
<commons-codec-version>1.10.L001</commons-codec-version>
145125
<jets3t-version>0.9.4.0006L</jets3t-version>
146126
<maven-shade-plugin.version>3.0.0</maven-shade-plugin.version>
147-
<maven-dependency-plugin.version>2.10</maven-dependency-plugin.version>
148127
</properties>
149128

150129
</project>

checker-plugin/pom.xml

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -41,27 +41,6 @@
4141

4242
<build>
4343
<plugins>
44-
<plugin>
45-
<!-- This plugin will set properties values using dependency information -->
46-
<groupId>org.apache.maven.plugins</groupId>
47-
<artifactId>maven-dependency-plugin</artifactId>
48-
<executions>
49-
<execution>
50-
<goals>
51-
<!--
52-
Goal that sets a property pointing to the artifact file for each project dependency.
53-
For each dependency (direct and transitive) a project property will be set which
54-
follows the:
55-
56-
groupId:artifactId:type:[classifier]
57-
58-
form and contains the path to the resolved artifact. -->
59-
<goal>properties</goal>
60-
</goals>
61-
</execution>
62-
</executions>
63-
</plugin>
64-
6544
<plugin>
6645
<artifactId>maven-compiler-plugin</artifactId>
6746
<version>${maven-compiler-plugin.version}</version>

core-java-8/pom.xml

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -116,23 +116,6 @@
116116
</resources>
117117

118118
<plugins>
119-
<plugin>
120-
<groupId>org.apache.maven.plugins</groupId>
121-
<artifactId>maven-dependency-plugin</artifactId>
122-
<executions>
123-
<execution>
124-
<id>copy-dependencies</id>
125-
<phase>prepare-package</phase>
126-
<goals>
127-
<goal>copy-dependencies</goal>
128-
</goals>
129-
<configuration>
130-
<outputDirectory>${project.build.directory}/libs</outputDirectory>
131-
</configuration>
132-
</execution>
133-
</executions>
134-
</plugin>
135-
136119
<plugin>
137120
<groupId>org.apache.maven.plugins</groupId>
138121
<artifactId>maven-compiler-plugin</artifactId>

core-java-concurrency-collections/pom.xml

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -57,26 +57,6 @@
5757
<filtering>true</filtering>
5858
</resource>
5959
</resources>
60-
61-
<plugins>
62-
<plugin>
63-
<groupId>org.apache.maven.plugins</groupId>
64-
<artifactId>maven-dependency-plugin</artifactId>
65-
<executions>
66-
<execution>
67-
<id>copy-dependencies</id>
68-
<phase>prepare-package</phase>
69-
<goals>
70-
<goal>copy-dependencies</goal>
71-
</goals>
72-
<configuration>
73-
<outputDirectory>${project.build.directory}/libs</outputDirectory>
74-
</configuration>
75-
</execution>
76-
</executions>
77-
</plugin>
78-
79-
</plugins>
8060
</build>
8161

8262
<properties>

core-java-concurrency/pom.xml

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -57,26 +57,6 @@
5757
<filtering>true</filtering>
5858
</resource>
5959
</resources>
60-
61-
<plugins>
62-
<plugin>
63-
<groupId>org.apache.maven.plugins</groupId>
64-
<artifactId>maven-dependency-plugin</artifactId>
65-
<executions>
66-
<execution>
67-
<id>copy-dependencies</id>
68-
<phase>prepare-package</phase>
69-
<goals>
70-
<goal>copy-dependencies</goal>
71-
</goals>
72-
<configuration>
73-
<outputDirectory>${project.build.directory}/libs</outputDirectory>
74-
</configuration>
75-
</execution>
76-
</executions>
77-
</plugin>
78-
79-
</plugins>
8060
</build>
8161

8262
<properties>

core-java-sun/pom.xml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -166,22 +166,6 @@
166166
</resource>
167167
</resources>
168168
<plugins>
169-
<plugin>
170-
<groupId>org.apache.maven.plugins</groupId>
171-
<artifactId>maven-dependency-plugin</artifactId>
172-
<executions>
173-
<execution>
174-
<id>copy-dependencies</id>
175-
<phase>prepare-package</phase>
176-
<goals>
177-
<goal>copy-dependencies</goal>
178-
</goals>
179-
<configuration>
180-
<outputDirectory>${project.build.directory}/libs</outputDirectory>
181-
</configuration>
182-
</execution>
183-
</executions>
184-
</plugin>
185169
<plugin>
186170
<groupId>org.apache.maven.plugins</groupId>
187171
<artifactId>maven-jar-plugin</artifactId>

disruptor/pom.xml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -36,22 +36,6 @@
3636
</resource>
3737
</resources>
3838
<plugins>
39-
<plugin>
40-
<groupId>org.apache.maven.plugins</groupId>
41-
<artifactId>maven-dependency-plugin</artifactId>
42-
<executions>
43-
<execution>
44-
<id>copy-dependencies</id>
45-
<phase>prepare-package</phase>
46-
<goals>
47-
<goal>copy-dependencies</goal>
48-
</goals>
49-
<configuration>
50-
<outputDirectory>${project.build.directory}/libs</outputDirectory>
51-
</configuration>
52-
</execution>
53-
</executions>
54-
</plugin>
5539
<plugin>
5640
<groupId>org.apache.maven.plugins</groupId>
5741
<artifactId>maven-jar-plugin</artifactId>

java-dates/pom.xml

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -61,23 +61,6 @@
6161
</resources>
6262

6363
<plugins>
64-
<plugin>
65-
<groupId>org.apache.maven.plugins</groupId>
66-
<artifactId>maven-dependency-plugin</artifactId>
67-
<executions>
68-
<execution>
69-
<id>copy-dependencies</id>
70-
<phase>prepare-package</phase>
71-
<goals>
72-
<goal>copy-dependencies</goal>
73-
</goals>
74-
<configuration>
75-
<outputDirectory>${project.build.directory}/libs</outputDirectory>
76-
</configuration>
77-
</execution>
78-
</executions>
79-
</plugin>
80-
8164
<plugin>
8265
<groupId>org.apache.maven.plugins</groupId>
8366
<artifactId>maven-compiler-plugin</artifactId>

java-numbers/pom.xml

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -83,23 +83,6 @@
8383
</configuration>
8484
</plugin>
8585

86-
<plugin>
87-
<groupId>org.apache.maven.plugins</groupId>
88-
<artifactId>maven-dependency-plugin</artifactId>
89-
<executions>
90-
<execution>
91-
<id>copy-dependencies</id>
92-
<phase>prepare-package</phase>
93-
<goals>
94-
<goal>copy-dependencies</goal>
95-
</goals>
96-
<configuration>
97-
<outputDirectory>${project.build.directory}/libs</outputDirectory>
98-
</configuration>
99-
</execution>
100-
</executions>
101-
</plugin>
102-
10386
<plugin>
10487
<groupId>org.apache.maven.plugins</groupId>
10588
<artifactId>maven-javadoc-plugin</artifactId>

0 commit comments

Comments
 (0)