diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2025-04-13 08:20:57 +0200 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2025-04-13 08:22:08 +0200 |
commit | bdb988f2da06a8c028bf23f0828590513be8a855 (patch) | |
tree | 9fff19660ebfa52281177ce93df805af1f68cd6c /README.adoc | |
parent | 1af1bae207277086e3bd078b05fd57b6cf08dc1c (diff) |
Revert "fix: Remove references to the obsolete jboss-logmanager-embedded."
This reverts commit a15a9c247121d5c7593db8ed654c761cac3efcea.
The references are still required for backward-compatibility.
Change-Id: Id6e3af93f50846e1955516373162f43b5fe5a655
Diffstat (limited to 'README.adoc')
-rw-r--r-- | README.adoc | 15 |
1 files changed, 11 insertions, 4 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") } |