Rafael Winterhalter
Rafael Winterhalter
Maybe it's another `-H:ClassInitialization` that needs to be added? To be perfectly honest, I never fully understood what is going on with these options and just kept adding them until...
I assume this is a Lombock issue. The exception states what the issue is. You can ignore this if you only want to decorate classes (apply Advice) by setting DECORATE...
Byte Buddy resolves the type to a type description. Doing so it discovers that fuzzyQueryCity(java.lang.String) has a type annotation on its first parameter that is not legally defined to be...
`LocalDateTime` is on the boot loader, the class loader that is the parent of all class loaders. Your agent is however loaded on the system loader. As a result, `ContextThreadLocalUtil`...
Glad I could help!
What you describe should work. What problem are you encountering when using `transform-test`?
Is the plugin included in the plugin's dependencies? It seems like a plugin fails to load. It should be added as a dependency to the plugin itself.
In Maven, are the plugins available using: ... ... Or how are the plugins added to the build cycle.
I think you need to define the plugin twice. Once transform for the plugin placed in main, once transform-test for the plugin placed in test. The test scope is not...
That's how I'd do it and it works for me. Could hou create a minimal reproducer?