Skip to content

Commit 347d946

Browse files
committed
Merge branch 'MDEPLOY-313' into m-api
# Conflicts: # pom.xml # src/main/java/org/apache/maven/plugins/deploy/DeployFileMojo.java
2 parents 6bc49ec + 0039189 commit 347d946

File tree

4 files changed

+17
-15
lines changed

4 files changed

+17
-15
lines changed

Diff for: .asf.yaml

+6-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,9 @@ github:
1313
merge: false
1414
rebase: true
1515
autolink_jira:
16-
- MDEPLOY
16+
- MDEPLOY
17+
notifications:
18+
19+
20+
pullrequests: [email protected]
21+
jira_options: link label comment

Diff for: pom.xml

+8-11
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>39</version>
26+
<version>41</version>
2727
<relativePath />
2828
</parent>
2929

@@ -69,7 +69,7 @@ under the License.
6969

7070
<properties>
7171
<javaVersion>8</javaVersion>
72-
<mavenVersion>4.0.0-alpha-4</mavenVersion>
72+
<mavenVersion>4.0.0-alpha-8</mavenVersion>
7373
<!-- Keep in sync with resolver used in maven above -->
7474
<slf4jVersion>1.7.5</slf4jVersion>
7575
<!-- Keep in sync with resolver used in maven above -->
@@ -79,17 +79,19 @@ under the License.
7979

8080
<!-- plugins version used in IT tests -->
8181
<mavenAntrunPluginVersion>3.1.0</mavenAntrunPluginVersion>
82-
<mavenCompilerPluginVersion>3.10.1</mavenCompilerPluginVersion>
82+
<mavenCompilerPluginVersion>3.11.0</mavenCompilerPluginVersion>
8383
<mavenEnforcerPluginVersion>3.1.0</mavenEnforcerPluginVersion>
8484
<mavenInstallPluginVersion>3.1.0</mavenInstallPluginVersion>
8585
<mavenJarPluginVersion>3.3.0</mavenJarPluginVersion>
8686
<mavenJavadocPluginVersion>3.4.1</mavenJavadocPluginVersion>
87-
<mavenPluginToolsVersion>3.8.1</mavenPluginToolsVersion>
87+
<mavenPluginToolsVersion>3.9.0</mavenPluginToolsVersion>
8888
<mavenResourcesPluginVersion>3.3.0</mavenResourcesPluginVersion>
8989
<mavenSourcePluginVersion>3.2.1</mavenSourcePluginVersion>
9090
<mavenSurefirePluginVersion>${surefire.version}</mavenSurefirePluginVersion>
9191
<mavenWarPluginVersion>3.3.2</mavenWarPluginVersion>
9292

93+
<version.plexus-xml>4.0.1</version.plexus-xml>
94+
9395
<project.build.outputTimestamp>2023-03-21T14:38:01Z</project.build.outputTimestamp>
9496
</properties>
9597

@@ -100,17 +102,12 @@ under the License.
100102
<version>${mavenVersion}</version>
101103
<scope>provided</scope>
102104
</dependency>
103-
<dependency>
104-
<groupId>org.apache.maven</groupId>
105-
<artifactId>plexus-utils</artifactId>
106-
<version>${mavenVersion}</version>
107-
</dependency>
108105

109106
<!-- Test -->
110107
<dependency>
111108
<groupId>org.apache.maven.plugin-testing</groupId>
112109
<artifactId>maven-plugin-testing-harness</artifactId>
113-
<version>4.0.0-alpha-1</version>
110+
<version>4.0.0-alpha-2</version>
114111
<scope>test</scope>
115112
</dependency>
116113
<dependency>
@@ -195,7 +192,7 @@ under the License.
195192
<plugin>
196193
<groupId>org.apache.maven.plugins</groupId>
197194
<artifactId>maven-invoker-plugin</artifactId>
198-
<version>3.5.0</version>
195+
<version>3.6.0</version>
199196
<configuration>
200197
<debug>true</debug>
201198
<showErrors>true</showErrors>

Diff for: src/it/MDEPLOY-178_deployfile-with-embedded-pom/verify.groovy

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ File buildLog = new File( basedir, 'build.log' )
2626
assert buildLog.exists()
2727
assert buildLog.text.contains( "[DEBUG] Using META-INF/maven/org.apache.maven.plugins.deploy.its/mdeploy178/pom.xml as pomFile" )
2828

29-
def pomProject = new XmlSlurper().parse( deployedPom )
30-
assert "https://issues.apache.org/jira/browse/MDEPLOY-178".equals( pomProject.url.text() )
29+
def pomProject = new groovy.xml.XmlParser().parse( deployedPom )
30+
assert "https://issues.apache.org/jira/browse/MDEPLOY-178".equals( pomProject.get("url").text() )

Diff for: src/site/apt/index.apt.vm

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ ${project.name}
8585
already contain the answer to your question as part of an older thread. Hence, it is also worth browsing/searching
8686
the {{{./mailing-lists.html}mail archive}}.
8787

88-
If you feel like the plugin is missing a feature or has a defect, you can fill a feature request or bug report in our
88+
If you feel like the plugin is missing a feature or has a defect, you can file a feature request or bug report in our
8989
{{{./issue-management.html}issue tracker}}. When creating a new issue, please provide a comprehensive description of your
9090
concern. Especially for fixing bugs it is crucial that the developers can reproduce your problem. For this reason,
9191
entire debug logs, POMs or most preferably little demo projects attached to the issue are very much appreciated.

0 commit comments

Comments
 (0)