Rafael Winterhalter

Results 738 comments of Rafael Winterhalter

I thought about this, but I think the toolchain will become even more complex for rather little benefit. Most people consume Javadoc while coding through an IDE. And if the...

Good point, I probably have to duplicate the source. I would of course prefer if IntelliJ could fall-back to the base source file, but I also understand that this might...

It seems like the source plugin cannot do this by itself, but I think I made this work using the antrun plugin. I will test this more thoroughly when I...

Thanks. It's gonna be the IDE processing the source jar, nothing to do unfortunately.

In `Advice`, this is not supported straight forward. The reason is that code is added to the method at the beginning and end, so the original code does no longer...

It seems like the JVM you are using does not support dynamic attach. You can add `-javaagent:/path/to/bytebuddy.jar` to the VM command line to avoid the need for dynamic attach.

I think you would need to register a custom `ByteBuddyTask` and bind it to the right source sets and folders. There are some limits to how one can bind the...

None, but the plugin struggles to determine the order of transformations automatically. I think this is the right approach.

It's mainly meant to support CDS which requires stack map frames. My rationale was that the jar file is a small index anyways, and the class files are only read...

That's true. I hope that CDS will be supported for older class files in the future, there's an open ticket in OpenJDK, and I consider releasing a classifier version that...