You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sl...@apache.org on 2021/01/02 10:44:29 UTC

[maven-help-plugin] branch next1 created (now e5c0f5b)

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

slachiewicz pushed a change to branch next1
in repository https://gitbox.apache.org/repos/asf/maven-help-plugin.git.


      at e5c0f5b  Bump surefire plugin to 2.22.2

This branch includes the following new commits:

     new 458abf1  Bump mockito-core from 1.9.5 to 2.28.2
     new c87cd2f  Bump xstream from 1.4.11.1 to 1.4.15
     new e5c0f5b  Bump surefire plugin to 2.22.2

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[maven-help-plugin] 03/03: Bump surefire plugin to 2.22.2

Posted by sl...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

slachiewicz pushed a commit to branch next1
in repository https://gitbox.apache.org/repos/asf/maven-help-plugin.git

commit e5c0f5b7e4a12d2e0a21c0aabdf2e83766eb0a18
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Sat Jan 2 11:40:34 2021 +0100

    Bump surefire plugin to 2.22.2
---
 pom.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/pom.xml b/pom.xml
index 5f46260..cb680a2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -70,6 +70,7 @@
   <properties>
     <javaVersion>7</javaVersion>
     <mavenVersion>3.0</mavenVersion>
+    <surefire.version>2.22.2</surefire.version>
     <project.build.outputTimestamp>2020-04-07T21:04:00Z</project.build.outputTimestamp>
   </properties>
 


[maven-help-plugin] 02/03: Bump xstream from 1.4.11.1 to 1.4.15

Posted by sl...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

slachiewicz pushed a commit to branch next1
in repository https://gitbox.apache.org/repos/asf/maven-help-plugin.git

commit c87cd2fd3ddd5a952d85fcdc52c26c85625286a9
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Tue Dec 22 01:44:48 2020 +0100

    Bump xstream from 1.4.11.1 to 1.4.15
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 574e723..5f46260 100644
--- a/pom.xml
+++ b/pom.xml
@@ -193,7 +193,7 @@
     <dependency>
       <groupId>com.thoughtworks.xstream</groupId>
       <artifactId>xstream</artifactId>
-      <version>1.4.11.1</version>
+      <version>1.4.15</version>
     </dependency>
     <dependency>
       <groupId>org.apache.commons</groupId>


[maven-help-plugin] 01/03: Bump mockito-core from 1.9.5 to 2.28.2

Posted by sl...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

slachiewicz pushed a commit to branch next1
in repository https://gitbox.apache.org/repos/asf/maven-help-plugin.git

commit 458abf1e81c89564641b9d386a592ca44a0b4e4f
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Tue Dec 22 02:17:08 2020 +0100

    Bump mockito-core from 1.9.5 to 2.28.2
---
 pom.xml                                                           | 2 +-
 src/test/java/org/apache/maven/plugins/help/DescribeMojoTest.java | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 40b4b28..574e723 100644
--- a/pom.xml
+++ b/pom.xml
@@ -229,7 +229,7 @@
     <dependency>
       <groupId>org.mockito</groupId>
       <artifactId>mockito-core</artifactId>
-      <version>1.9.5</version>
+      <version>2.28.2</version>
       <scope>test</scope>
     </dependency>
   </dependencies>
diff --git a/src/test/java/org/apache/maven/plugins/help/DescribeMojoTest.java b/src/test/java/org/apache/maven/plugins/help/DescribeMojoTest.java
index a7a0dff..e167940 100644
--- a/src/test/java/org/apache/maven/plugins/help/DescribeMojoTest.java
+++ b/src/test/java/org/apache/maven/plugins/help/DescribeMojoTest.java
@@ -19,8 +19,8 @@ package org.apache.maven.plugins.help;
  * under the License.
  */
 
-import static org.mockito.Matchers.any;
-import static org.mockito.Matchers.eq;
+import static org.mockito.ArgumentMatchers.any;
+import static org.mockito.ArgumentMatchers.eq;
 import static org.mockito.Mockito.mock;
 import static org.mockito.Mockito.never;
 import static org.mockito.Mockito.verify;