Skip to content

Commit

Permalink
Migrate log4j-jul to JUnit 5
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbaHerrerias committed Nov 20, 2024
1 parent caffa21 commit 552b858
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions log4j-jul/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,13 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import org.apache.logging.log4j.core.test.appender.ListAppender;
import org.apache.logging.log4j.jul.ApiLogger;
import org.apache.logging.log4j.jul.LevelTranslator;
import org.junit.Test;
import org.junit.jupiter.api.Test;

/**
*
Expand Down

0 comments on commit 552b858

Please sign in to comment.