We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a9847e commit ca9cb7cCopy full SHA for ca9cb7c
modules/jooby-log4j/pom.xml
@@ -19,6 +19,12 @@
19
<version>${jooby.version}</version>
20
</dependency>
21
22
+ <dependency>
23
+ <groupId>org.jspecify</groupId>
24
+ <artifactId>jspecify</artifactId>
25
+ <version>1.0.0</version>
26
+ </dependency>
27
+
28
<dependency>
29
<groupId>org.apache.logging.log4j</groupId>
30
<artifactId>log4j-core</artifactId>
modules/jooby-log4j/src/main/java/module-info.java
@@ -9,6 +9,7 @@
9
requires org.slf4j;
10
requires org.apache.logging.log4j;
11
requires org.apache.logging.log4j.core;
12
+ requires org.jspecify;
13
14
provides LoggingService with
15
Log4jService;
0 commit comments