Rafael Winterhalter

Results 738 comments of Rafael Winterhalter

I can add a flag to include the class path. You are right that it will make sense in many scenarios. As it is right now, you can transform any...

Can you try with the latest version? *transform-location* will now include the class path. *transform-location-empty* is now the previous behavior.

I am not sure what you are trying to accomplish, but I would copy your compiled classes and the dependencies to a custom location using: https://maven.apache.org/components/plugins/maven-dependency-plugin/examples/unpacking-project-dependencies.html Then you can apply...

I added another target for this exact use case. Given the Maven API, I think this is the best approach. If you have a folder with all dependencies, using *transform-dependencies*...

I have a Jar plugin for Gradle. That one should work and since Gradle has a programmatic interface, it should be trivial to iterate over all files in a folder...

Is Byte Buddy on the class path from before? If so, you might have a version clash since the version used might differ from the version you are using.

You cannot make a direct replacement of this field access with a static method. The field can be seen as a read on `this`. With a direct replacement, it would...

I am afraid that that is a JVM bug. If you update the JVM, the error will likely go away. Could you validate that? I submitted a long row of...

Should be any latest version. The exception occurs in code of the JDK. So either the generic type information is faulty, or there is a bug in the JDK. Even...

Could you create me a quick reproducer? I am wondering if this might be a bug in the Kotlin compiler which triggers a bug in the JDK that is not...