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...

link|improve this question
How did you define the dependencies ? (scope?) – khmarbaise Feb 24 at 11:55
<dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>test.company</groupId> <artifactId>applet-core</artifactId> <version>1.1</version> </dependency> </dependencies> – Peter Feb 24 at 12:01
You will only see the applet-core artifact in the classpath (MANIFEST.MF) file. – khmarbaise Feb 24 at 12:12
I got it also working for the project and even the dependency artefacts. I'll post an answer when I'm allowed to ;-) – Peter Feb 24 at 13:52
I thought it is working but faced another problem: I created a new project, added the archive-index parameter in the maven-jar-plugin config (as shown above) in the pom.xml and created two files: src/main/resources/a.txt and src/main/resource/test/b.txt. After a maven install only a.txt occurs in INDEX.LIST, b.txt is NOT listed (in contrast, the folder test is shown). I could not find any bug report. Where is my mistake? – Peter Feb 24 at 16:20
show 1 more comment
feedback

2 Answers

You know that this is not part of the INDEX.LIST file cause it contains only classes but not the dependencies. The dependencies should be located into the MANIFEST.MF file instead (As far as i know).

Based on Maven you won't get that information into the INDEX.LIST file. You can use the MANIFEST.MF file for this.

link|improve this answer
INDEX.LIST contains a list of JARs (dependencies) with the info about which classes the JARs contain – Oleg Mikheev Feb 24 at 12:07
feedback
up vote 0 down vote accepted

I finally solved it with the following configuration:

  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-jar-plugin</artifactId>
    <configuration>
      <archive>
        <index>true</index>
        <manifest>
          <addClasspath>true</addClasspath>
        </manifest>
      </archive>
    </configuration>
  </plugin>

With this configuration, all jar files (project and dependencies) are listed in the MANIFEST.MF's classpath and their entries (files at directory level and package names according to the jar index doc) will occur in INDEX.LIST.

Note #1: Using both index and addManifest prior version 2.4 results in the bug described in http://jira.codehaus.org/browse/MJAR-69. So make sure to use version 2.4 of the maven-jar-plugin.

Note #2: Due to the bug described in http://jira.codehaus.org/browse/MNGECLIPSE-1219, dependencies will occur neither in MANIFEST.MF nor in INDEX.LIST if dependencies are resolved using Resolve Workspace artifacts (option of the Eclipse Run configuration). So make sure that you a) first install/deploy all dependencies and b) disable the Resolve Workspace artifacts option (or close the dependency project in eclipse) if necessary before building the project with eclipse.

Note #3: Do NOT use both the jar-with-dependencies (maven-assembly-plugin) and addClasspath (maven-jar-plugin), or you'll double all entries in the resulting jar.

Note #4: The java jar command line tool does also evaluate the MANIFEST.MF's classpath (besides explicit listing of jar files when invoking the tool as shown in my initial example), see the index example of the jar doc.

Due to Note #2, I'll investigate into ANT's jar...

Many thanks to @khmarbaise pointing my to the right direction :-)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.