Lars Bodewig

Results 11 comments of Lars Bodewig

Additionally: 1. How do the `keys` and `values` correspond with each other if the keys are an unsorted `Set`? 2. If `indexOf` existed, how should `values.indexOf(k)` return a value different...

Concurrent open PR for LANG-1682: #848

I found a [related issue](https://groups.google.com/g/byte-buddy/c/knBTPF6IUx8/m/m_kFFsjPBAAJ) where you advise to use `Plugin.Engine.Default` to transform a library's jar file. How do I do that? Does my custom plugin need to implement `Plugin.Engine`...

But to apply the engine to the jar file I need to use a custom mojo or can I configure the ByteBuddyMojo to do that? Downloading the jar during the...

The goal fails with a PluginConfigurationException: `Unable to parse configuration of mojo net.bytebuddy:byte-buddy-maven-plugin:1.14.19-SNAPSHOT:transform-location for parameter dependency: Cannot create instance of class net.bytebuddy.build.maven.MavenCoordinate` due to `public List dependencies;`. I changed it...

Maybe I misunderstood. I figured the list of dependencies for the goal was a way to specify the libraries that should be additionally transformed, while I hoped other project dependencies...

I tried transform-location and transform-location-extended but I probably still do something wrong. ```xml mygroup myplugin 1.0.0 my.Plugin ${project.build.outputDirectory} ${project.build.outputDirectory} 3rd.party library 1.0.0 ``` If I set `source` to `${project.build.outputDirectory}` my...

I was able to achieve what I wanted by using two goals at once now: * _transform_ for my local project classes where my transformation also needs project dependency from...

Thanks for releasing the new Maven Mojos in 1.14.19. I briefly checked the changes to the gradle plugin in 1.15.0, I suppose they do not contain the equivalent of `transform-location`...