NicklasWallgren
NicklasWallgren
There is a risk that `initialized` is cached between threads, leading to multiple initializations. Explaination; 1. Thread 1 calls `get` and enters the `firstTime` method. 2. Before `firstTime` completes, Thread...
The JitPack artifacts have been corrupted and no longer match the versions published on Maven Central for the past 2 - 3 releases. Take a look at; https://jitpack.io/com/github/kagkarlsson/db-scheduler/v15.6.0/db-scheduler-v15.6.0.pom https://jitpack.io/com/github/kagkarlsson/db-scheduler/15.6.0/db-scheduler-15.6.0.jar Maven...
### Proposal It would be helpful if `WireMockRuntimeInfo` were stored in the `ExtensionContext.Store`, allowing other JUnit 5 extensions to access it directly.
The Matcher seems to be missing the `group(String name)` method, I am getting the following error; ``` [ERROR] Method java.util.regex.Matcher.group(Ljava/lang/String;)Ljava/lang/String; was not found ``` https://docs.oracle.com/en/java/javase/24/docs/api/java.base/java/util/regex/Matcher.html#group(java.lang.String)