This is an automated email from the ASF dual-hosted git repository. slachiewicz pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-mvnd.git
commit a39d31743e39655799dffe18cbb0f2a2839a01f8 Author: Sylwester Lachiewicz <[email protected]> AuthorDate: Mon Jun 29 21:08:57 2026 +0200 Cleanup after parent update --- .../mvndaemon/mvnd/junit/MvndTestExtension.java | 2 +- pom.xml | 22 +++------------------- 2 files changed, 4 insertions(+), 20 deletions(-) diff --git a/integration-tests/src/test/java/org/mvndaemon/mvnd/junit/MvndTestExtension.java b/integration-tests/src/test/java/org/mvndaemon/mvnd/junit/MvndTestExtension.java index 60abaa03..e9f22b37 100644 --- a/integration-tests/src/test/java/org/mvndaemon/mvnd/junit/MvndTestExtension.java +++ b/integration-tests/src/test/java/org/mvndaemon/mvnd/junit/MvndTestExtension.java @@ -153,7 +153,7 @@ public class MvndTestExtension implements BeforeAllCallback, BeforeEachCallback, } } - static class MvndResource implements ExtensionContext.Store.CloseableResource { + static class MvndResource implements AutoCloseable { private final TestParameters parameters; private final TestRegistry registry; diff --git a/pom.xml b/pom.xml index d21f9c6d..07a1e2ca 100644 --- a/pom.xml +++ b/pom.xml @@ -38,7 +38,7 @@ <licenses> <license> <name>Apache-2.0</name> - <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> + <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> @@ -109,8 +109,8 @@ <testcontainers.version>2.0.5</testcontainers.version> <xstream.version>1.4.21</xstream.version> - <!-- from parent --> - <versions.junit5>5.13.1</versions.junit5> + <!-- overwrite parent --> + <version.apache-rat-plugin>0.18</version.apache-rat-plugin> </properties> <dependencyManagement> @@ -477,25 +477,14 @@ <version>${graalvm.plugin.version}</version> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-dependency-plugin</artifactId> - <version>3.11.0</version> - </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> - <version>3.12.0</version> <configuration> <release>${maven-dist.required.jdk}</release> <detectJavaApiLink>false</detectJavaApiLink> </configuration> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-plugin-plugin</artifactId> - <version>${maven.plugin-tools.version}</version> - </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> @@ -505,11 +494,6 @@ <tagNameFormat>@{project.version}</tagNameFormat> </configuration> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-site-plugin</artifactId> - <version>3.22.0</version> - </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-wrapper-plugin</artifactId>
