Skip to content

Commit 8fec9a8

Browse files
committed
Prepared new major version 5 containing switch to SLF4J logging.
This introduces dependency to slf4j-api version 1.7.36.
1 parent 1dc2126 commit 8fec9a8

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log for javapos-config-loader
22

3+
## 5.0.0
4+
5+
- replaced legacy logging implementation by the logging facade SLF4J version 1, see https://www.slf4j.org/ for details on how to integrate
6+
37
## 4.0.2
48

59
- fixed resource loading from JAR file on the class-path (contributed by @art-and-co through [PR #13](https://github.com/JavaPOSWorkingGroup/javapos-config-loader/issues/13))
@@ -11,7 +15,6 @@
1115

1216
## 4.0.0
1317

14-
- replaced legacy logging implementation by the logging facade SLF4J, see https://www.slf4j.org/ for details on how to integrate
1518
- jpos.config.DefaultCompositeRegPopulator.load() is throwing more specific IllegalArgument exception instead of RuntimeException
1619
- added Javax XML parser based XML registry populator implementation (contributed by @mjpcger)
1720
- removed Xerces based XML registry populator implementations, mainly

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ wrapper {
2727

2828
def artifactName = 'javapos-config-loader'
2929
group='org.javapos'
30-
version='4.0.2-SNAPSHOT' // if version is going to be changed, first add "-SNAPSHOT" to test publishing to MavenCentral's Snapshot repo
30+
version='5.0.0-SNAPSHOT' // if version is going to be changed, first add "-SNAPSHOT" to test publishing to MavenCentral's Snapshot repo
3131

3232

3333
///////////////////////////////////////////////////////////////////////////////
@@ -65,11 +65,11 @@ def testResourceDir = file("${System.properties['java.io.tmpdir']}/javapos-confi
6565

6666
dependencies {
6767
api 'org.javapos:javapos-contracts:1.6.0'
68-
implementation 'org.slf4j:slf4j-api:2.0.13'
68+
implementation 'org.slf4j:slf4j-api:1.7.36'
6969

7070
testImplementation("junit:junit:4.13.2")
7171

72-
testRuntimeOnly 'org.slf4j:slf4j-simple:2.0.13'
72+
testRuntimeOnly 'org.slf4j:slf4j-simple:1.7.36'
7373
testRuntimeOnly files(testResourceDir)
7474
}
7575

0 commit comments

Comments
 (0)