Rafael Winterhalter

Results 738 comments of Rafael Winterhalter

I would need to see the original and transformed byte code to understand what pattern triggers the error. It seems like there are frames dropped when Byte Buddy would expect...

You are using a rather old version of Byte Buddy (1.10.19). Could you first try with the latest version?

Unfortunately, there is nothing ready made, but I would suggest you to get the @Origin Method and resolve the target using reflection and cache it in a concurrent map. Alternatively,...

It avoids allocation but mostly, in modern JVMs, the overhead is minimal. You might even use method handles to further reduce the overhead.

If you are not using the agent, are you redefining loaded classes? In this case, you are out of luck. You cannot add additional methods what is the requirement for...

I think I would rather try to plug into the dependencyManagement configuration and try to extract that information for the case that the version is not specified. I'll see how...

I implemented this on master, if you wanted to give it a try.

Bummer, ideally, this would be fixed by Maven but I'll see to add such an option.

I added the option on master now. I see how it can be useful, but I also see how one can shoot oneself in the foot. As with previous philosophy,...

I lacked a test still. URL needs a file prefix. Will fix tomorrow.