This is an automated email from the ASF dual-hosted git repository. gnodet pushed a commit to branch maven-install-plugin-3.x in repository https://gitbox.apache.org/repos/asf/maven-install-plugin.git
The following commit(s) were added to refs/heads/maven-install-plugin-3.x by this push: new 7b7ec47 Bump org.apache.maven.plugins:maven-plugins from 43 to 44 (#131) 7b7ec47 is described below commit 7b7ec47dc57980d81fcecca26be00b194e057b1e Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> AuthorDate: Thu Apr 3 10:34:15 2025 +0200 Bump org.apache.maven.plugins:maven-plugins from 43 to 44 (#131) Bumps [org.apache.maven.plugins:maven-plugins](https://github.com/apache/maven-parent) from 43 to 44. - [Release notes](https://github.com/apache/maven-parent/releases) - [Commits](https://github.com/apache/maven-parent/commits/v44) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-plugins dependency-type: direct:production update-type: version-update:semver-major ... --------- Signed-off-by: dependabot[bot] <supp...@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sylwester Lachiewicz <slachiew...@apache.org> Co-authored-by: Guillaume Nodet <gno...@gmail.com> --- pom.xml | 3 ++- .../java/org/apache/maven/plugins/install/InstallFileMojoTest.java | 4 ++-- src/test/java/org/apache/maven/plugins/install/InstallMojoTest.java | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index e4297c0..6ed4885 100644 --- a/pom.xml +++ b/pom.xml @@ -23,7 +23,7 @@ <parent> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugins</artifactId> - <version>43</version> + <version>44</version> <relativePath /> </parent> @@ -148,6 +148,7 @@ <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> + <version>${version.maven-plugin-tools}</version> <scope>provided</scope> </dependency> diff --git a/src/test/java/org/apache/maven/plugins/install/InstallFileMojoTest.java b/src/test/java/org/apache/maven/plugins/install/InstallFileMojoTest.java index 5094468..3ec2fe3 100644 --- a/src/test/java/org/apache/maven/plugins/install/InstallFileMojoTest.java +++ b/src/test/java/org/apache/maven/plugins/install/InstallFileMojoTest.java @@ -56,9 +56,9 @@ public class InstallFileMojoTest extends AbstractMojoTestCase { private File file; - private final String LOCAL_REPO = "target/local-repo/"; + private static final String LOCAL_REPO = "target/local-repo/"; - private final String SPECIFIC_LOCAL_REPO = "target/specific-local-repo/"; + private static final String SPECIFIC_LOCAL_REPO = "target/specific-local-repo/"; public void setUp() throws Exception { super.setUp(); diff --git a/src/test/java/org/apache/maven/plugins/install/InstallMojoTest.java b/src/test/java/org/apache/maven/plugins/install/InstallMojoTest.java index 8176925..d580967 100644 --- a/src/test/java/org/apache/maven/plugins/install/InstallMojoTest.java +++ b/src/test/java/org/apache/maven/plugins/install/InstallMojoTest.java @@ -57,7 +57,7 @@ public class InstallMojoTest extends AbstractMojoTestCase { InstallArtifactStub artifact; - private final String LOCAL_REPO = "target/local-repo/"; + private static final String LOCAL_REPO = "target/local-repo/"; public void setUp() throws Exception { super.setUp();