Skip to content

Commit

Permalink
+ elf4j-engine version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
q3769 committed Aug 12, 2023
1 parent 05a12ff commit 5e415ad
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 18 deletions.
22 changes: 13 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

<groupId>io.github.elf4j</groupId>
<artifactId>slf4j-elf4j</artifactId>
<version>6.0.6</version>
<version>6.0.7</version>
<packaging>jar</packaging>
<name>slf4j-elf4j</name>
<description>SLF4J binding to use ELF4J native logging implementation</description>
Expand Down Expand Up @@ -72,21 +72,25 @@
<dependency>
<groupId>io.github.elf4j</groupId>
<artifactId>elf4j-engine</artifactId>
<version>11.0.8</version>
<version>11.1.2</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.9.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.github.q3769</groupId>
<artifactId>coco4j</artifactId>
<version>2.0.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.10.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
Expand Down
9 changes: 0 additions & 9 deletions src/test/java/elf4j/engine/slf4/IntegrationTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,22 +25,13 @@

package elf4j.engine.slf4;

import coco4j.MoreAwaitilities;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.time.Duration;

class IntegrationTest {
Logger logger = LoggerFactory.getLogger(IntegrationTest.class);

@AfterEach
void afterEach() {
MoreAwaitilities.suspend(Duration.ofMillis(200));
}

@Test
void it() {
logger.info("Hello, {}!", "world");
Expand Down

0 comments on commit 5e415ad

Please sign in to comment.