While developing an applet, I created a maven project with .jar packaging and different .jar dependencies. Now I want to add an archive index (/META-INF/INDEX.LIST) to my project's jar that contains not only the entries for this jar but also the entries of all dependency jar's.
With the jar command line tool I'd achieve it with
> jar i myproject.jar dependency1.jar dependency2.jar ...
Using the maven archive index flag of the maven-jar-plugin only the entries for myproject.jar occur in the archive index, not so the entries of the dependency jars:
...
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<index>true</index>
</archive>
</configuration>
</plugin>
...
Is there a possibility to include the entries of dependencies into the index file with maven?
Thank you for any hints...