Daniel Jasiński

Results 7 comments of Daniel Jasiński

In our setup only our classes are loaded by our classloader, third-party classes are loaded by standard class loaders. When those classes request the LoggerProvider, they cannot see our provider.

The relationship is similar to "child-first", we load _"our"_ classes using our classloader and delegate all other classes to the parent. The mechanism of SLF4J would work well if we...

I think it would be a good intermediate step to provide API for parsing `Map` before moving to full File/IO support. At the moment I have to handle this case...

Hi, We are developing a desktop application with Compose-Multiplatform UI. The app is packaged using JDK jpackage utility, and would like to make the app modular using JMS for various...

Thanks @Tvede-dk ! These annotations are exactly what I was looking for! Would these annotations also work with SOURCE retention instead of BINARY?

Using `SealedClassSerializer ` and `findPolymorphicSerializer` is a workaround for the main issue of `"type"` being a hardcoded keyword for discovering the polymorphic type. In my example, we have two different...

Good PR, but there is a lot of housekeeping and the original intention gets lost in all the minutiae. I would suggest splitting this PR, at least into the **chore**...