java - maven-shade-plugin add application version to manifest -




i can't figure out how maven-shade-plugin include application version pom file manifest file. found examples maven-jar-plugin suggests including

<archive>                        <manifest>         <adddefaultimplementationentries>true</adddefaultimplementationentries>         <adddefaultspecificationentries>true</adddefaultspecificationentries>     </manifest> </archive> 

within plugis configuration section (http://blog.soebes.de/blog/2014/01/02/version-information-into-your-appas-with-maven/). tried maven-shade-plugin, doesn't work. tried find information if org.apache.maven.plugins.shade.resource.manifestresourcetransformer can not find in docs.

has idea how this?

thanks!





wiki

Comments

Popular posts from this blog

Asterisk AGI Python Script to Dialplan does not work -

kotlin - Out-projected type in generic interface prohibits the use of metod with generic parameter -

python - Read npy file directly from S3 StreamingBody -