Skip to content

Commit e814f6e

Browse files
committed
pom dependency and plugin management cleanup
1 parent 1dc16ed commit e814f6e

File tree

6 files changed

+353
-418
lines changed

6 files changed

+353
-418
lines changed

buildtime-reports/pom.xml

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -19,26 +19,6 @@
1919
<plugin>
2020
<groupId>org.apache.maven.plugins</groupId>
2121
<artifactId>maven-enforcer-plugin</artifactId>
22-
<version>${maven-enforcer-plugin-version}</version>
23-
<executions>
24-
<execution>
25-
<id>enforce-maven</id>
26-
<goals>
27-
<goal>enforce</goal>
28-
</goals>
29-
<configuration>
30-
<rules>
31-
<requireMavenVersion>
32-
<version>${maven.version.range}</version>
33-
</requireMavenVersion>
34-
<requireJavaVersion>
35-
<version>${java.version.range}</version>
36-
</requireJavaVersion>
37-
<requirePluginVersions></requirePluginVersions>
38-
</rules>
39-
</configuration>
40-
</execution>
41-
</executions>
4222
</plugin>
4323
</plugins>
4424
</build>

integration-tests/pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,6 @@
107107

108108
<build>
109109
<plugins>
110-
<plugin>
111-
<groupId>org.apache.maven.plugins</groupId>
112-
<artifactId>maven-enforcer-plugin</artifactId>
113-
</plugin>
114110
<plugin>
115111
<groupId>org.apache.maven.plugins</groupId>
116112
<artifactId>maven-compiler-plugin</artifactId>

kubernetes/pom.xml

Lines changed: 1 addition & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -28,41 +28,11 @@
2828

2929
<build>
3030
<plugins>
31-
<plugin>
32-
<groupId>org.apache.maven.plugins</groupId>
33-
<artifactId>maven-enforcer-plugin</artifactId>
34-
<version>${maven-enforcer-plugin-version}</version>
35-
<executions>
36-
<execution>
37-
<id>enforce-maven</id>
38-
<goals>
39-
<goal>enforce</goal>
40-
</goals>
41-
<configuration>
42-
<rules>
43-
<requireMavenVersion>
44-
<version>${maven.version.range}</version>
45-
</requireMavenVersion>
46-
<requireJavaVersion>
47-
<version>${java.version.range}</version>
48-
</requireJavaVersion>
49-
<requirePluginVersions></requirePluginVersions>
50-
</rules>
51-
</configuration>
52-
</execution>
53-
</executions>
54-
</plugin>
5531
<plugin>
5632
<groupId>org.apache.maven.plugins</groupId>
5733
<artifactId>maven-compiler-plugin</artifactId>
58-
<version>${maven-compiler-plugin-version}</version>
59-
<configuration>
60-
<release>11</release>
61-
<compilerArgs>
62-
<arg>-Xpkginfo:always</arg>
63-
</compilerArgs>
64-
</configuration>
6534
</plugin>
35+
6636
<plugin>
6737
<groupId>org.codehaus.mojo</groupId>
6838
<artifactId>exec-maven-plugin</artifactId>
@@ -98,31 +68,26 @@
9868
<dependency>
9969
<groupId>com.appscode.voyager</groupId>
10070
<artifactId>client-java</artifactId>
101-
<version>0.1.0</version>
10271
<scope>test</scope>
10372
</dependency>
10473
<dependency>
10574
<groupId>org.hamcrest</groupId>
10675
<artifactId>hamcrest-junit</artifactId>
107-
<version>2.0.0.0</version>
10876
<scope>test</scope>
10977
</dependency>
11078
<dependency>
11179
<groupId>junit</groupId>
11280
<artifactId>junit</artifactId>
113-
<version>${junit-version}</version>
11481
<scope>test</scope>
11582
</dependency>
11683
<dependency>
11784
<groupId>org.yaml</groupId>
11885
<artifactId>snakeyaml</artifactId>
119-
<version>${snakeyaml-version}</version>
12086
<scope>test</scope>
12187
</dependency>
12288
<dependency>
12389
<groupId>com.google.guava</groupId>
12490
<artifactId>guava</artifactId>
125-
<version>${guava-version}</version>
12691
<scope>test</scope>
12792
</dependency>
12893
</dependencies>

0 commit comments

Comments
 (0)