Skip to content

Commit

Permalink
Add slf4j api and move assembly to resolve future release troubles (#21)
Browse files Browse the repository at this point in the history
## Description

Adds slf4j api as a dependency to allow proper usage in the other
proejcts


## Type of Change

* Bug fix (non-breaking change which fixes an issue)

## Checklist

- [x] My code follows the style guidelines of this project
- [x] I have performed a self-review of my own code

Signed-off-by: Jakub Stejskal <[email protected]>
  • Loading branch information
Frawless authored Jul 15, 2024
1 parent b7d0d12 commit 5c9f2d0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@
<sonatype.nexus.central>0.5.0</sonatype.nexus.central>

<log4j.version>2.23.1</log4j.version>
<slf4j.version>2.0.13</slf4j.version>
<junit.jupiter.version>5.10.3</junit.jupiter.version>
<junit.platform.version>1.10.3</junit.platform.version>
<maven.surefire.version>3.3.1</maven.surefire.version>
Expand Down Expand Up @@ -162,6 +163,11 @@
<artifactId>log4j-slf4j-impl</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-annotations</artifactId>
Expand Down
File renamed without changes.

0 comments on commit 5c9f2d0

Please sign in to comment.