Skip to content

Commit

Permalink
version bumped to 1.5.0, logback-access moved
Browse files Browse the repository at this point in the history
Signed-off-by: Ceki Gulcu <ceki@qos.ch>
  • Loading branch information
ceki committed Feb 1, 2024
1 parent 60f8b20 commit 432cd9c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
import static org.junit.jupiter.api.Assertions.assertTrue;
public class EnvUtilTest {

// Beware: ----------------------------------------
// Beware: needs to be updated upon version change
// Beware: ----------------------------------------
static final String EXPECTED_VERSION = "1.5";


@BeforeEach
public void setUp() throws Exception {
Expand All @@ -21,7 +26,7 @@ public void setUp() throws Exception {
public void versionTest() {
String versionStr = EnvUtil.logbackVersion();
assertNotNull(versionStr);
assertTrue(versionStr.startsWith("1.4"));
assertTrue(versionStr.startsWith(EXPECTED_VERSION));
}


Expand Down
4 changes: 0 additions & 4 deletions logback-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,6 @@
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-access</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-ext</artifactId>
Expand Down

0 comments on commit 432cd9c

Please sign in to comment.