You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@archiva.apache.org by ma...@apache.org on 2019/10/07 20:20:32 UTC

[archiva] 05/05: Using variables for dependency versions

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

martin_s pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/archiva.git

commit 7e5e437bb57d1890242945f22a60713515f85057
Author: Martin Stockhammer <ma...@apache.org>
AuthorDate: Mon Oct 7 22:20:20 2019 +0200

    Using variables for dependency versions
---
 pom.xml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/pom.xml b/pom.xml
index 7a6c332..29a3729 100644
--- a/pom.xml
+++ b/pom.xml
@@ -702,7 +702,7 @@
       <dependency>
         <groupId>commons-configuration</groupId>
         <artifactId>commons-configuration</artifactId>
-        <version>1.10</version>
+        <version>${commons.configuration.version}</version>
         <exclusions>
           <exclusion>
             <groupId>commons-beanutils</groupId>
@@ -1683,25 +1683,25 @@
       <dependency>
         <groupId>org.junit.platform</groupId>
         <artifactId>junit-platform-launcher</artifactId>
-        <version>1.5.2</version>
+        <version>${junit.platform.version}</version>
         <scope>test</scope>
       </dependency>
       <dependency>
         <groupId>org.junit.platform</groupId>
         <artifactId>junit-platform-console-standalone</artifactId>
-        <version>1.5.2</version>
+        <version>${junit.platform.version}</version>
         <scope>test</scope>
       </dependency>
       <dependency>
         <groupId>org.junit.jupiter</groupId>
         <artifactId>junit-jupiter-engine</artifactId>
-        <version>5.5.2</version>
+        <version>${junit.jupiter.version}</version>
         <scope>test</scope>
       </dependency>
       <dependency>
         <groupId>org.junit.vintage</groupId>
         <artifactId>junit-vintage-engine</artifactId>
-        <version>5.5.2</version>
+        <version>${junit.jupiter.version}</version>
         <scope>test</scope>
       </dependency>