Skip to content

Commit

Permalink
Updated Parent / Added plexus-xml dep.
Browse files Browse the repository at this point in the history
  • Loading branch information
khmarbaise committed Dec 18, 2023
1 parent 30d2b53 commit f440d22
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 5 deletions.
14 changes: 10 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugins</artifactId>
<version>39</version>
<version>41</version>
<relativePath />
</parent>

Expand Down Expand Up @@ -80,13 +80,13 @@

<!-- plugin versions used in IT tests -->
<mavenAntrunPluginVersion>3.1.0</mavenAntrunPluginVersion>
<mavenCompilerPluginVersion>3.10.1</mavenCompilerPluginVersion>
<mavenCompilerPluginVersion>3.11.0</mavenCompilerPluginVersion>
<mavenEnforcerPluginVersion>3.1.0</mavenEnforcerPluginVersion>
<mavenJarPluginVersion>3.3.0</mavenJarPluginVersion>
<mavenPluginPluginVersion>3.7.0</mavenPluginPluginVersion>
<mavenPluginPluginVersion>3.10.2</mavenPluginPluginVersion>
<mavenResourcesPluginVersion>3.3.0</mavenResourcesPluginVersion>
<mavenSourcePluginVersion>3.2.1</mavenSourcePluginVersion>
<mavenSurefirePluginVersion>3.0.0-M7</mavenSurefirePluginVersion>
<mavenSurefirePluginVersion>3.2.3</mavenSurefirePluginVersion>

<project.build.outputTimestamp>2023-03-21T14:31:18Z</project.build.outputTimestamp>
</properties>
Expand Down Expand Up @@ -134,6 +134,12 @@
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-xml</artifactId>
<version>4.0.3</version>
<scope>provided</scope>
</dependency>

<!-- dependencies to annotations -->
<dependency>
Expand Down
18 changes: 18 additions & 0 deletions src/it/non-changed-artifact/.mvn/.gitkeep
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
1 change: 0 additions & 1 deletion src/it/non-changed-artifact/verify.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,3 @@ copyArtifactPath = new File( basedir, '../../local-repo/org/apache/maven/plugins

assert 2 == logText.count( "[INFO] Installing ${artifactPath} to ${copyArtifactPath}" )
assert 1 == logText.count( "[DEBUG] Skipped re-installing ${artifactPath} to ${copyArtifactPath}, seems unchanged" )

0 comments on commit f440d22

Please sign in to comment.