Skip to content

Commit

Permalink
build: fix log4j compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
jknack committed Sep 16, 2024
1 parent 6a9847e commit ca9cb7c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions modules/jooby-log4j/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@
<version>${jooby.version}</version>
</dependency>

<dependency>
<groupId>org.jspecify</groupId>
<artifactId>jspecify</artifactId>
<version>1.0.0</version>
</dependency>

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
Expand Down
1 change: 1 addition & 0 deletions modules/jooby-log4j/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
requires org.slf4j;
requires org.apache.logging.log4j;
requires org.apache.logging.log4j.core;
requires org.jspecify;

provides LoggingService with
Log4jService;
Expand Down

0 comments on commit ca9cb7c

Please sign in to comment.