yupiik / maven-shade-transformers

Extensions to use with Apache Maven Shade.
https://www.yupiik.com
Apache License 2.0
9 stars 3 forks source link

Generate JavaDoc and Sources of Jakarta Classifier? #11

Closed melloware closed 5 months ago

melloware commented 5 months ago

Sorry @rmannibucau didn't know where else to ask but we got this report:

https://github.com/primefaces-extensions/primefaces-extensions/issues/1254

Basically we are shading to a jakarta classifier but even with <createSourcesJar>true</createSourcesJar> its creating an empty JAR. I would love to be able to generate sources and javadocs for this shaded classifier JAR. Do you think its possible?

rmannibucau commented 5 months ago

@melloware where -> maven user list I guess, about your issue -> I'd ensure source (resp javadoc) jar is attached to the project before shade phase.

melloware commented 5 months ago

nailed it i moved my shade phase to verify. Thanks!