This is an automated email from the ASF dual-hosted git repository.

Bukama pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-deploy-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new ab6655c  Bump org.apache.maven.plugins:maven-plugins from 47 to 48 
(#661)
ab6655c is described below

commit ab6655cf495ec33d2c5fcab1573731c86f86bc20
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Tue May 19 08:09:29 2026 +0200

    Bump org.apache.maven.plugins:maven-plugins from 47 to 48 (#661)
    
    * Bump org.apache.maven.plugins:maven-plugins from 47 to 48
    
    Bumps 
[org.apache.maven.plugins:maven-plugins](https://github.com/apache/maven-parent)
 from 47 to 48.
    - [Release notes](https://github.com/apache/maven-parent/releases)
    - [Commits](https://github.com/apache/maven-parent/commits)
    
    ---
    updated-dependencies:
    - dependency-name: org.apache.maven.plugins:maven-plugins
      dependency-version: '48'
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    * Spotless and invoker
    
    ---------
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Matthias Bünger <[email protected]>
---
 pom.xml                                                              | 4 +---
 .../org/apache/maven/plugins/deploy/DeployMojoPomPackagingTest.java  | 5 +++--
 src/test/java/org/apache/maven/plugins/deploy/DeployMojoTest.java    | 5 +++--
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/pom.xml b/pom.xml
index e5c822c..71753ef 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@ under the License.
   <parent>
     <groupId>org.apache.maven.plugins</groupId>
     <artifactId>maven-plugins</artifactId>
-    <version>47</version>
+    <version>48</version>
     <relativePath />
   </parent>
 
@@ -89,7 +89,6 @@ under the License.
     <slf4jVersion>2.0.18</slf4jVersion>
     <version.plexus-xml>4.0.3</version.plexus-xml>
     <version.maven-plugin-tools>4.0.0-beta-1</version.maven-plugin-tools>
-    <version.maven-invoker-plugin>3.7.0</version.maven-invoker-plugin>
 
     <!-- TODO remove property maven4x.site.path with next parent -->
     
<maven4x.site.path>plugins-archives/${project.artifactId}-LATEST-4.x</maven4x.site.path>
@@ -237,7 +236,6 @@ under the License.
             <plugin>
               <groupId>org.apache.maven.plugins</groupId>
               <artifactId>maven-invoker-plugin</artifactId>
-              <version>3.9.1</version>
               <configuration>
                 <debug>true</debug>
                 <showErrors>true</showErrors>
diff --git 
a/src/test/java/org/apache/maven/plugins/deploy/DeployMojoPomPackagingTest.java 
b/src/test/java/org/apache/maven/plugins/deploy/DeployMojoPomPackagingTest.java
index 284894b..798a49e 100644
--- 
a/src/test/java/org/apache/maven/plugins/deploy/DeployMojoPomPackagingTest.java
+++ 
b/src/test/java/org/apache/maven/plugins/deploy/DeployMojoPomPackagingTest.java
@@ -117,8 +117,9 @@ class DeployMojoPomPackagingTest {
         when(session.getArtifact(any()))
                 .thenAnswer(iom -> new org.apache.maven.impl.DefaultArtifact(
                         session, iom.getArgument(0, 
org.eclipse.aether.artifact.Artifact.class)));
-        when(session.createRemoteRepository(any())).thenAnswer(iom -> 
session.getService(RepositoryFactory.class)
-                .createRemote(iom.getArgument(0, Repository.class)));
+        when(session.createRemoteRepository(any()))
+                .thenAnswer(iom ->
+                        
session.getService(RepositoryFactory.class).createRemote(iom.getArgument(0, 
Repository.class)));
         return session;
     }
 
diff --git a/src/test/java/org/apache/maven/plugins/deploy/DeployMojoTest.java 
b/src/test/java/org/apache/maven/plugins/deploy/DeployMojoTest.java
index c3afbd5..5646b85 100644
--- a/src/test/java/org/apache/maven/plugins/deploy/DeployMojoTest.java
+++ b/src/test/java/org/apache/maven/plugins/deploy/DeployMojoTest.java
@@ -288,8 +288,9 @@ class DeployMojoTest {
         when(session.getArtifact(any()))
                 .thenAnswer(iom -> new org.apache.maven.impl.DefaultArtifact(
                         session, iom.getArgument(0, 
org.eclipse.aether.artifact.Artifact.class)));
-        when(session.createRemoteRepository(any())).thenAnswer(iom -> 
session.getService(RepositoryFactory.class)
-                .createRemote(iom.getArgument(0, Repository.class)));
+        when(session.createRemoteRepository(any()))
+                .thenAnswer(iom ->
+                        
session.getService(RepositoryFactory.class).createRemote(iom.getArgument(0, 
Repository.class)));
         return session;
     }
 

Reply via email to