Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Added
- Logging abstraction layer in the `org.eclipse.keyple.core.util.logging` package.
- `Logger` interface providing methods for trace, debug, info, warn, and error levels.
- `LoggerFactory` for centralized management of loggers and dynamic configuration of providers.
- `LoggerProvider` Service Provider Interface (SPI) to allow integration of various logging frameworks.
- Default temporary `Slf4jLogger` and `Slf4jLoggerProvider` for SLF4J v1.7.32 framework integration.
This logger will be replaced by `NoOpLogger` and `NoOpLoggerProvider` on next major release.
### Changed
- Migrated the CI pipeline from Jenkins to GitHub Actions.
### Removed
- Removed useless SLF4J API dependency

## [2.4.0] - 2024-04-12
### Added
Expand Down
5 changes: 0 additions & 5 deletions NOTICE.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,3 @@ GSON

* License: [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt)
* Project: https://github.com/google/gson/gson

SLF4J API

* License: [MIT](https://spdx.org/licenses/MIT.html)
* Project: http://www.slf4j.org
2 changes: 0 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@ plugins {

dependencies {
implementation("com.google.code.gson:gson:2.10.1")
implementation("org.slf4j:slf4j-api:1.7.32")

testImplementation("org.slf4j:slf4j-simple:1.7.32")
testImplementation(platform("org.junit:junit-bom:5.10.2"))
testImplementation("org.junit.jupiter:junit-jupiter")
testImplementation("org.junit.vintage:junit-vintage-engine")
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
group = org.eclipse.keyple
title = Keyple Util Java Lib
description = Utility classes for Keyple components
version = 2.5.0-SNAPSHOT
version = 2.4.1-SNAPSHOT

# Java Configuration
javaSourceLevel = 1.8
Expand Down
127 changes: 0 additions & 127 deletions src/main/java/org/eclipse/keyple/core/util/logging/Logger.java

This file was deleted.

118 changes: 0 additions & 118 deletions src/main/java/org/eclipse/keyple/core/util/logging/LoggerFactory.java

This file was deleted.

Loading
Loading