Skip to content

Commit ca9cb7c

Browse files
committed
build: fix log4j compilation error
1 parent 6a9847e commit ca9cb7c

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

modules/jooby-log4j/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@
1919
<version>${jooby.version}</version>
2020
</dependency>
2121

22+
<dependency>
23+
<groupId>org.jspecify</groupId>
24+
<artifactId>jspecify</artifactId>
25+
<version>1.0.0</version>
26+
</dependency>
27+
2228
<dependency>
2329
<groupId>org.apache.logging.log4j</groupId>
2430
<artifactId>log4j-core</artifactId>

modules/jooby-log4j/src/main/java/module-info.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
requires org.slf4j;
1010
requires org.apache.logging.log4j;
1111
requires org.apache.logging.log4j.core;
12+
requires org.jspecify;
1213

1314
provides LoggingService with
1415
Log4jService;

0 commit comments

Comments
 (0)