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 ed73710 commit e269258
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
17 changes: 13 additions & 4 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>elf4j-provider</artifactId>
<version>10.0.8</version>
<version>10.0.9</version>
<packaging>jar</packaging>
<name>elf4j-provider</name>
<description>Native logging service provider implementation of ELF4J (Easy Logging Facade For Java)
Expand Down Expand Up @@ -68,7 +68,7 @@
<dependency>
<groupId>io.github.elf4j</groupId>
<artifactId>elf4j-engine</artifactId>
<version>11.0.9</version>
<version>11.1.2</version>
</dependency>
<dependency>
<groupId>io.github.q3769</groupId>
Expand All @@ -79,13 +79,11 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.10.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>5.10.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -107,6 +105,17 @@
<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>
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/elf4j/provider/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@ public static void main(String[] args) throws InterruptedException {
(Supplier) () -> "as usual");

MoreAwaitilities.sleepInterruptibly(Duration.ofMillis(200));
LogServiceManager.INSTANCE.stop();
LogServiceManager.INSTANCE.shutdown();
}
}

0 comments on commit e269258

Please sign in to comment.