Skip to content

Commit e72bd83

Browse files
committed
[MCHECKSTYLE-448] Upgrade to Parent 42 and Maven 3.6.3
This closes #137
1 parent 61def02 commit e72bd83

File tree

1 file changed

+16
-38
lines changed

1 file changed

+16
-38
lines changed

pom.xml

+16-38
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ under the License.
2323
<parent>
2424
<groupId>org.apache.maven.plugins</groupId>
2525
<artifactId>maven-plugins</artifactId>
26-
<version>41</version>
26+
<version>42</version>
2727
<relativePath />
2828
</parent>
2929

@@ -74,8 +74,8 @@ under the License.
7474

7575
<properties>
7676
<javaVersion>8</javaVersion>
77-
<aetherVersion>1.0.0.v20140518</aetherVersion>
78-
<mavenVersion>3.2.5</mavenVersion>
77+
<mavenVersion>3.6.3</mavenVersion>
78+
<resolverVersion>1.4.1</resolverVersion>
7979
<checkstyleVersion>9.3</checkstyleVersion>
8080
<slf4jVersion>1.7.36</slf4jVersion>
8181
<doxiaVersion>1.11.1</doxiaVersion>
@@ -238,27 +238,27 @@ under the License.
238238
</exclusions>
239239
</dependency>
240240
<dependency>
241-
<groupId>org.eclipse.aether</groupId>
242-
<artifactId>aether-api</artifactId>
243-
<version>${aetherVersion}</version>
241+
<groupId>org.apache.maven.resolver</groupId>
242+
<artifactId>maven-resolver-api</artifactId>
243+
<version>${resolverVersion}</version>
244244
<scope>test</scope>
245245
</dependency>
246246
<dependency>
247-
<groupId>org.eclipse.aether</groupId>
248-
<artifactId>aether-impl</artifactId>
249-
<version>${aetherVersion}</version>
247+
<groupId>org.apache.maven.resolver</groupId>
248+
<artifactId>maven-resolver-impl</artifactId>
249+
<version>${resolverVersion}</version>
250250
<scope>test</scope>
251251
</dependency>
252252
<dependency>
253-
<groupId>org.eclipse.aether</groupId>
254-
<artifactId>aether-connector-basic</artifactId>
255-
<version>${aetherVersion}</version>
253+
<groupId>org.apache.maven.resolver</groupId>
254+
<artifactId>maven-resolver-connector-basic</artifactId>
255+
<version>${resolverVersion}</version>
256256
<scope>test</scope>
257257
</dependency>
258258
<dependency>
259-
<groupId>org.eclipse.aether</groupId>
260-
<artifactId>aether-transport-wagon</artifactId>
261-
<version>${aetherVersion}</version>
259+
<groupId>org.apache.maven.resolver</groupId>
260+
<artifactId>maven-resolver-transport-wagon</artifactId>
261+
<version>${resolverVersion}</version>
262262
<scope>test</scope>
263263
</dependency>
264264
<dependency>
@@ -302,36 +302,14 @@ under the License.
302302
</plugins>
303303
</pluginManagement>
304304
<plugins>
305-
<plugin>
306-
<groupId>org.codehaus.mojo</groupId>
307-
<artifactId>build-helper-maven-plugin</artifactId>
308-
<version>3.5.0</version>
309-
<executions>
310-
<!--
311-
Make the version parts of the maven.compiler.target property
312-
available as separate properties, so that they can be used to define
313-
the java signature artifactId used by animal-sniffer
314-
-->
315-
<execution>
316-
<id>parse-version</id>
317-
<goals>
318-
<goal>parse-version</goal>
319-
</goals>
320-
<configuration>
321-
<propertyPrefix>javaSignature</propertyPrefix>
322-
<versionString>${maven.compiler.target}</versionString>
323-
</configuration>
324-
</execution>
325-
</executions>
326-
</plugin>
327305
<plugin>
328306
<groupId>org.codehaus.mojo</groupId>
329307
<artifactId>animal-sniffer-maven-plugin</artifactId>
330308
<version>1.23</version>
331309
<configuration>
332310
<signature>
333311
<groupId>org.codehaus.mojo.signature</groupId>
334-
<artifactId>java${javaSignature.majorVersion}${javaSignature.minorVersion}</artifactId>
312+
<artifactId>java18</artifactId>
335313
<version>1.0</version>
336314
</signature>
337315
</configuration>

0 commit comments

Comments
 (0)