olamy commented on issue #747: URL: https://github.com/apache/maven-shade-plugin/issues/747#issuecomment-3846737362
> > done via [#749](https://github.com/apache/maven-shade-plugin/pull/749) haha so groovy has his shaded asm, jdependency has his shaded asm. someone else? :) > > As long as they are minimized - no real harm done :) > Yup that's not the problem :) The problem is already explained here in this comment https://github.com/apache/maven-shade-plugin/issues/747#issuecomment-3272308553 Most important part regarding `jdependency` > but this one we cannot really upgrade except making the plugin jdk11 required. Personnally I would not mind but this might generate some discussions So the solution currently should be as simple as this below: ``` <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <dependencies> <dependency> <groupId>org.vafer</groupId> <artifactId>jdependency</artifactId> <version>2.14</version> </dependency> </dependencies> </plugin> </plugins> </pluginManagement> ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
