You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2021/08/16 06:26:23 UTC

[maven-shade-plugin] branch master updated: use a property for slf4j version

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 2d343cd  use a property for slf4j version
2d343cd is described below

commit 2d343cd8b5aceaab365e480a29683a0192e91320
Author: Olivier Lamy <ol...@apache.org>
AuthorDate: Mon Aug 16 16:26:10 2021 +1000

    use a property for slf4j version
    
    Signed-off-by: Olivier Lamy <ol...@apache.org>
---
 pom.xml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 8078715..bf5596d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -70,6 +70,7 @@
     <sisu.version>0.3.4</sisu.version>
     <currentVersion>${project.version}</currentVersion>
     <asmVersion>9.2</asmVersion>
+    <slf4j.version>1.7.31</slf4j.version>
     <project.build.outputTimestamp>2021-07-14T11:28:32Z</project.build.outputTimestamp>
   </properties>
 
@@ -175,7 +176,7 @@
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-api</artifactId>
-      <version>1.7.31</version>
+      <version>${slf4j.version}</version>
     </dependency>
     <dependency>
       <groupId>org.ow2.asm</groupId>
@@ -259,7 +260,7 @@
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-simple</artifactId>
-      <version>1.7.31</version>
+      <version>${slf4j.version}</version>
       <scope>test</scope>
     </dependency>
   </dependencies>