diff options
-rw-r--r-- | README.adoc | 15 | ||||
-rw-r--r-- | core/pom.xml | 5 | ||||
-rw-r--r-- | examples/spring-boot/pom.xml | 7 | ||||
-rw-r--r-- | renovate.json | 3 |
4 files changed, 25 insertions, 5 deletions
diff --git a/README.adoc b/README.adoc index 033ee1d..09bf84b 100644 --- a/README.adoc +++ b/README.adoc @@ -131,7 +131,7 @@ If you are using Maven: <dependency> <groupId>org.jboss.logmanager</groupId> <artifactId>jboss-logmanager</artifactId> - <version>3.1.2.Final</version> + <version>3.0.2.Final</version> </dependency> </dependencies> @@ -143,7 +143,7 @@ If you are using Gradle: ---- dependencies { implementation("eu.mulk.quarkus-googlecloud-jsonlogging:quarkus-googlecloud-jsonlogging-core:7.0.0") - implementation("org.jboss.logmanager:jboss-logmanager:3.1.2.Final") + implementation("org.jboss.logmanager:jboss-logmanager:3.0.2.Final") } ---- @@ -198,7 +198,13 @@ If you are using Maven: <dependency> <groupId>org.jboss.logmanager</groupId> <artifactId>jboss-logmanager</artifactId> - <version>3.1.2.Final</version> + <version>3.0.2.Final</version> + </dependency> + + <dependency> + <groupId>org.jboss.logmanager</groupId> + <artifactId>jboss-logmanager-embedded</artifactId> + <version>1.2.0.Final</version> </dependency> <dependency> @@ -244,7 +250,8 @@ configurations { dependencies { implementation("eu.mulk.quarkus-googlecloud-jsonlogging:quarkus-googlecloud-jsonlogging-core:7.0.0") - implementation("org.jboss.logmanager:jboss-logmanager:3.1.2.Final") + implementation("org.jboss.logmanager:jboss-logmanager:3.0.2.Final") + implementation("org.jboss.logmanager:jboss-logmanager-embedded:1.2.0.Final") implementation("org.jboss.slf4j:slf4j-jboss-logmanager:2.0.1.Final") } diff --git a/core/pom.xml b/core/pom.xml index 7082467..9590957 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -23,6 +23,11 @@ SPDX-License-Identifier: LGPL-3.0-or-later <dependencies> <dependency> <groupId>org.jboss.logmanager</groupId> + <artifactId>jboss-logmanager-embedded</artifactId> + <version>1.1.1</version> + </dependency> + <dependency> + <groupId>org.jboss.logmanager</groupId> <artifactId>jboss-logmanager</artifactId> <version>3.1.2.Final</version> <optional>true</optional> diff --git a/examples/spring-boot/pom.xml b/examples/spring-boot/pom.xml index 632206a..4ee5f4e 100644 --- a/examples/spring-boot/pom.xml +++ b/examples/spring-boot/pom.xml @@ -67,7 +67,12 @@ SPDX-License-Identifier: GPL-3.0-or-later <dependency> <groupId>org.jboss.logmanager</groupId> <artifactId>jboss-logmanager</artifactId> - <version>3.1.2.Final</version> + <version>3.0.2.Final</version> + </dependency> + <dependency> + <groupId>org.jboss.logmanager</groupId> + <artifactId>jboss-logmanager-embedded</artifactId> + <version>1.2.0.Final</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> diff --git a/renovate.json b/renovate.json index c031064..2b3c538 100644 --- a/renovate.json +++ b/renovate.json @@ -3,4 +3,7 @@ [ "local>mulk/renovate-config" , ":automergeMinor" ] +, "ignoreDeps": + [ "org.jboss.logmanager:jboss-logmanager-embedded" + ] } |