diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2025-04-12 22:13:01 +0200 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2025-04-12 22:13:01 +0200 |
commit | a15a9c247121d5c7593db8ed654c761cac3efcea (patch) | |
tree | 51234d5c0d7562ed214c072ca35112f307bafa21 | |
parent | d86c79091739a081d74e8e04c71451f5906e8c54 (diff) |
fix: Remove references to the obsolete jboss-logmanager-embedded.
Change-Id: Ie028e2d1cfdc4485fc7855b2284e22072f21db57
-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, 5 insertions, 25 deletions
diff --git a/README.adoc b/README.adoc index 09bf84b..033ee1d 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.0.2.Final</version> + <version>3.1.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.0.2.Final") + implementation("org.jboss.logmanager:jboss-logmanager:3.1.2.Final") } ---- @@ -198,13 +198,7 @@ If you are using Maven: <dependency> <groupId>org.jboss.logmanager</groupId> <artifactId>jboss-logmanager</artifactId> - <version>3.0.2.Final</version> - </dependency> - - <dependency> - <groupId>org.jboss.logmanager</groupId> - <artifactId>jboss-logmanager-embedded</artifactId> - <version>1.2.0.Final</version> + <version>3.1.2.Final</version> </dependency> <dependency> @@ -250,8 +244,7 @@ configurations { dependencies { implementation("eu.mulk.quarkus-googlecloud-jsonlogging:quarkus-googlecloud-jsonlogging-core:7.0.0") - implementation("org.jboss.logmanager:jboss-logmanager:3.0.2.Final") - implementation("org.jboss.logmanager:jboss-logmanager-embedded:1.2.0.Final") + implementation("org.jboss.logmanager:jboss-logmanager:3.1.2.Final") implementation("org.jboss.slf4j:slf4j-jboss-logmanager:2.0.1.Final") } diff --git a/core/pom.xml b/core/pom.xml index 9590957..7082467 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -23,11 +23,6 @@ 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 0a339b5..a4ea4eb 100644 --- a/examples/spring-boot/pom.xml +++ b/examples/spring-boot/pom.xml @@ -67,12 +67,7 @@ SPDX-License-Identifier: GPL-3.0-or-later <dependency> <groupId>org.jboss.logmanager</groupId> <artifactId>jboss-logmanager</artifactId> - <version>3.0.2.Final</version> - </dependency> - <dependency> - <groupId>org.jboss.logmanager</groupId> - <artifactId>jboss-logmanager-embedded</artifactId> - <version>1.2.0.Final</version> + <version>3.1.2.Final</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> diff --git a/renovate.json b/renovate.json index 2b3c538..c031064 100644 --- a/renovate.json +++ b/renovate.json @@ -3,7 +3,4 @@ [ "local>mulk/renovate-config" , ":automergeMinor" ] -, "ignoreDeps": - [ "org.jboss.logmanager:jboss-logmanager-embedded" - ] } |