summaryrefslogtreecommitdiff
path: root/examples/spring-boot/pom.xml
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2023-09-24 12:57:37 +0200
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2023-09-24 13:48:17 +0200
commitddcce2e8bc1c43e73a4033b4d76b5e06a4a3ad89 (patch)
treec2f8f53ec1dc0480c8dcc895605f5e961989d626 /examples/spring-boot/pom.xml
parent95c2a90fb4d0a8c69af70f12dd12cdb168116cb4 (diff)
feat(core): Add DefaultConfiguratorFactory for JBoss Log Manager 3.x.
Change-Id: I6bf88c9e6c8c4aba303cc1d18e8f18c917dd6b88
Diffstat (limited to 'examples/spring-boot/pom.xml')
-rw-r--r--examples/spring-boot/pom.xml7
1 files changed, 6 insertions, 1 deletions
diff --git a/examples/spring-boot/pom.xml b/examples/spring-boot/pom.xml
index 2940c66..8cb994a 100644
--- a/examples/spring-boot/pom.xml
+++ b/examples/spring-boot/pom.xml
@@ -42,7 +42,7 @@ SPDX-License-Identifier: GPL-3.0-or-later
<dependency>
<groupId>org.jboss.slf4j</groupId>
<artifactId>slf4j-jboss-logmanager</artifactId>
- <version>1.1.0.Final</version>
+ <version>2.0.1.Final</version>
</dependency>
<!-- *** optional ***
<dependency>
@@ -97,6 +97,11 @@ SPDX-License-Identifier: GPL-3.0-or-later
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot.version}</version>
+ <configuration>
+ <systemPropertyVariables>
+ <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
+ </systemPropertyVariables>
+ </configuration>
</plugin>
</plugins>
</build>