You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by el...@apache.org on 2020/07/28 09:41:04 UTC

[maven-mapping] branch master updated: simple dependency upgrades: JUnit and plexus-interpolation (#1)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 041c416  simple dependency upgrades: JUnit and plexus-interpolation (#1)
041c416 is described below

commit 041c4168a9c1f10ac7cedbf7c756dc49fa79d40f
Author: Elliotte Rusty Harold <el...@users.noreply.github.com>
AuthorDate: Tue Jul 28 09:40:58 2020 +0000

    simple dependency upgrades: JUnit and plexus-interpolation (#1)
    
    * simple dependency upgrades
    * declare maven-artifact
    * move maven-core to test scope
---
 pom.xml | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index e852380..f083b23 100644
--- a/pom.xml
+++ b/pom.xml
@@ -63,19 +63,25 @@
   <dependencies>
     <dependency>
       <groupId>org.apache.maven</groupId>
-      <artifactId>maven-core</artifactId>
+      <artifactId>maven-artifact</artifactId>
       <version>${mavenVersion}</version>
     </dependency>
     <dependency>
       <groupId>org.codehaus.plexus</groupId>
       <artifactId>plexus-interpolation</artifactId>
-      <version>1.25</version>
+      <version>1.26</version>
     </dependency>
 
     <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-core</artifactId>
+      <version>${mavenVersion}</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>4.11</version>
+      <version>4.13</version>
       <scope>test</scope>
     </dependency>
     <dependency>