Skip to content

Commit 6ed7f00

Browse files
authored
upgrade to parent 39 (#157)
Signed-off-by: Olivier Lamy <[email protected]> Signed-off-by: Olivier Lamy <[email protected]>
1 parent b99f3c1 commit 6ed7f00

28 files changed

+2742
-3164
lines changed

pom.xml

+14-18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<?xml version='1.0' encoding='UTF-8'?>
2-
1+
<?xml version="1.0" encoding="UTF-8"?>
32
<!--
43
Licensed to the Apache Software Foundation (ASF) under one
54
or more contributor license agreements. See the NOTICE file
@@ -18,14 +17,13 @@ KIND, either express or implied. See the License for the
1817
specific language governing permissions and limitations
1918
under the License.
2019
-->
21-
2220
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2321
<modelVersion>4.0.0</modelVersion>
2422

2523
<parent>
26-
<artifactId>maven-plugins</artifactId>
2724
<groupId>org.apache.maven.plugins</groupId>
28-
<version>37</version>
25+
<artifactId>maven-plugins</artifactId>
26+
<version>39</version>
2927
<relativePath />
3028
</parent>
3129

@@ -34,10 +32,8 @@ under the License.
3432
<packaging>maven-plugin</packaging>
3533

3634
<name>Apache Maven Invoker Plugin</name>
37-
<description>
38-
The Maven Invoker Plugin is used to run a set of Maven projects. The plugin can determine whether each project
39-
execution is successful, and optionally can verify the output generated from a given project execution.
40-
</description>
35+
<description>The Maven Invoker Plugin is used to run a set of Maven projects. The plugin can determine whether each project
36+
execution is successful, and optionally can verify the output generated from a given project execution.</description>
4137

4238
<prerequisites>
4339
<maven>${mavenVersion}</maven>
@@ -46,8 +42,8 @@ under the License.
4642
<scm>
4743
<connection>scm:git:https://gitbox.apache.org/repos/asf/maven-invoker-plugin.git</connection>
4844
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/maven-invoker-plugin.git</developerConnection>
49-
<url>https://github.com/apache/maven-invoker-plugin/tree/${project.scm.tag}</url>
5045
<tag>HEAD</tag>
46+
<url>https://github.com/apache/maven-invoker-plugin/tree/${project.scm.tag}</url>
5147
</scm>
5248
<issueManagement>
5349
<system>jira</system>
@@ -268,8 +264,8 @@ under the License.
268264
<scope>test</scope>
269265
<exclusions>
270266
<exclusion>
271-
<artifactId>plexus-container-default</artifactId>
272267
<groupId>org.codehaus.plexus</groupId>
268+
<artifactId>plexus-container-default</artifactId>
273269
</exclusion>
274270
</exclusions>
275271
</dependency>
@@ -330,6 +326,12 @@ under the License.
330326
<plugin>
331327
<groupId>org.codehaus.modello</groupId>
332328
<artifactId>modello-maven-plugin</artifactId>
329+
<configuration>
330+
<models>
331+
<model>src/main/mdo/invocation.mdo</model>
332+
</models>
333+
<version>1.0.0</version>
334+
</configuration>
333335
<executions>
334336
<execution>
335337
<id>standard</id>
@@ -344,18 +346,12 @@ under the License.
344346
</execution>
345347
<execution>
346348
<id>site-docs</id>
347-
<phase>pre-site</phase>
348349
<goals>
349350
<goal>xdoc</goal>
350351
</goals>
352+
<phase>pre-site</phase>
351353
</execution>
352354
</executions>
353-
<configuration>
354-
<models>
355-
<model>src/main/mdo/invocation.mdo</model>
356-
</models>
357-
<version>1.0.0</version>
358-
</configuration>
359355
</plugin>
360356
<plugin>
361357
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)