I would have expected maven-shade-plugin to support:
<archive>
<indexed>true</indexed
<archive>
but it does not seem to.
Is there another way to get the shaded jar indexed?
I would have expected maven-shade-plugin to support:
<archive>
<indexed>true</indexed
<archive>
but it does not seem to.
Is there another way to get the shaded jar indexed?
It is as it seems. DefaultShader.java contains:
if ( "META-INF/INDEX.LIST".equals( name ) )
{
// we cannot allow the jar indexes to be copied over or the
// jar is useless. Ideally, we could create a new one
// later
continue;
}
Apparently this ideal situation never stepped on since I couldn't find "INDEX.LIST"
anywhere else in source-release.zip
.