This is an automated email from the ASF dual-hosted git repository.
pottlinger pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/creadur-tentacles.git
The following commit(s) were added to refs/heads/master by this push:
new 4002dda Extract version of log4j into property to ease future updates
4002dda is described below
commit 4002dda29796454eebdf399e21e3fe50f790fab1
Author: P. Ottlinger <[email protected]>
AuthorDate: Mon Feb 28 16:10:59 2022 +0100
Extract version of log4j into property to ease future updates
---
pom.xml | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/pom.xml b/pom.xml
index a32e24d..969a20c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -52,12 +52,12 @@
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
- <version>2.17.2</version>
+ <version>${loggerVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
- <version>2.17.2</version>
+ <version>${loggerVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.velocity</groupId>
@@ -85,6 +85,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<javaVersion>1.8</javaVersion>
<httpClientVersion>4.5.13</httpClientVersion>
+ <loggerVersion>2.17.2</loggerVersion>
<apacheRatVersion>0.13</apacheRatVersion>
<project.build.outputTimestamp>1</project.build.outputTimestamp>
</properties>