Replies: 4 comments
-
|
Thanks for reporting. The problem is, that actually the dependencies in the using project are responsible for this, as they are pulling the I've not yet a good idea how to solve this and if this is even solvable from this libs side. If you have an idea, it's more than welcome. I think I need some more time to think about it (aside my regular work). |
Beta Was this translation helpful? Give feedback.
-
|
Yes, and as I pointed out it's easily worked around, so not a high priority issue at all. If nothing else, might be worth a mention in the README. Thanks for the quick response! |
Beta Was this translation helpful? Give feedback.
-
|
Yes, the workaround is easy, but has to be done in the using project. |
Beta Was this translation helpful? Give feedback.
-
|
I was able to fix this warning by adding the <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.5.0</version>
<executions>
<execution>
<id>integration-tests</id>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
<configuration>
<argLine>-Djava.util.logging.manager=org.jboss.logmanager.LogManager</argLine>
</configuration>
</plugin> |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Describe the bug
Just tried moving my environment to Keycloak 26.0.1. Running my integration tests which starts a Keycloak testcontainer I see an ERROR during startup (see logging output). Also note that this error appears to be benign (the testcontainer starts successfully) except that I had to exclude slf4j-jboss-logmanager to see log output from the testcontainer.
This allows my reload4j dependency to work:
Version
3.4.0
Expected behavior
The testcontainer should start without the ERROR message.
Actual behavior
No response
How to Reproduce?
No response
Relevant log output
Anything else?
No response
Beta Was this translation helpful? Give feedback.
All reactions