Skip to content

Commit 75b08f9

Browse files
committed
Fix dependencies
- Bump logback-classic to 1.4.4 to fix logging - Bump slf4j-api to 2.0.3 - Remove redundant junit-jupiter dependency Closes #62
1 parent 6c31102 commit 75b08f9

File tree

2 files changed

+14
-20
lines changed

2 files changed

+14
-20
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## [0.5.3] - 2022-11-14
4+
- Bump logback-classic to 1.3.4 to fix logging
5+
- Bump slf4j-api to 2.0.3
6+
- Remove redundant junit-jupiter dependency
7+
38
## [0.5.2] - 2022-11-11
49
- Add dependency management
510
- Bump snakeyaml to 1.33

pom.xml

Lines changed: 9 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -70,18 +70,7 @@
7070
<dependency>
7171
<groupId>org.slf4j</groupId>
7272
<artifactId>slf4j-api</artifactId>
73-
<version>2.0.0</version>
74-
</dependency>
75-
<dependency>
76-
<groupId>org.junit.jupiter</groupId>
77-
<artifactId>junit-jupiter</artifactId>
78-
<version>5.9.0</version>
79-
<scope>test</scope>
80-
</dependency>
81-
<dependency>
82-
<groupId>org.yaml</groupId>
83-
<artifactId>snakeyaml</artifactId>
84-
<version>1.33</version>
73+
<version>2.0.3</version>
8574
</dependency>
8675
</dependencies>
8776
</dependencyManagement>
@@ -100,12 +89,18 @@
10089
<dependency>
10190
<groupId>org.yaml</groupId>
10291
<artifactId>snakeyaml</artifactId>
92+
<version>1.33</version>
93+
</dependency>
94+
<dependency>
95+
<groupId>org.slf4j</groupId>
96+
<artifactId>slf4j-api</artifactId>
10397
</dependency>
10498

10599
<!-- Test dependencies -->
106100
<dependency>
107-
<groupId>org.junit.jupiter</groupId>
108-
<artifactId>junit-jupiter</artifactId>
101+
<groupId>ch.qos.logback</groupId>
102+
<artifactId>logback-classic</artifactId>
103+
<version>1.3.4</version>
109104
<scope>test</scope>
110105
</dependency>
111106
<dependency>
@@ -114,12 +109,6 @@
114109
<version>${testcontainers.version}</version>
115110
<scope>test</scope>
116111
</dependency>
117-
<dependency>
118-
<groupId>ch.qos.logback</groupId>
119-
<artifactId>logback-classic</artifactId>
120-
<version>1.2.11</version>
121-
<scope>test</scope>
122-
</dependency>
123112
</dependencies>
124113

125114
<build>

0 commit comments

Comments
 (0)