vote up 2 vote down star
1

I have an unusual situation where I need to add an arbitrary classpath entry (that points to a jar file) into the manifest of an executable jar. (This is for a Swing desktop application.)

The maven-jar-plugin generates the "Class-Path" entry for the jar manifest using the maven dependencies, and there doesn't appear to be any way of adding arbitrary entries.

I also looked at hard-coding the arbitrary classpath entry into the batch file that starts the application, using the "-classpath" parameter, but I can't figure out how to get Maven to filter the classpath into a batch file.

flag

53% accept rate
Out of interest, why do you want to add a classpath entry rather than specify a dependency and let Maven calculate the classpath? – Rich Seller Oct 2 at 16:26
It's kind of a complicated deployment situation - in a nutshell I have a jar that is in a well known location in the deployment target, and I want to add an absolute path to it. The dependency is known by maven, but it won't be deployed. In another similar case I want to add the same dependency with a different name to the classpath. It's one of those crazy one-off things that you run into when working in a corporate environment :) – Ken Liu Oct 2 at 17:52
I guess that playing with dependency scope is not an option (I'm thinking to "provided"). Yeah, I agree, that would be a nasty work around. – Pascal Thivent Oct 2 at 18:49
I actually did mess around with the "provided" and "dependency" scopes, but those don't work quite the way you might expect. – Ken Liu Oct 3 at 4:24

1 Answer

vote up 3 vote down

Update: Here's how to filter a classpath into a custom manifest.

The maven-dependency-plugin's build-classpath goal can be configured to output the classpath to a file in the properties format (i.e. classpath=[classpath]). You then configure the filters element to use the generated classpath file, and configure the resources directory to be filtered.

For example:

<build>
  <plugins>
    <plugin>
      <artifactId>maven-dependency-plugin</artifactId>
      <version>2.1</version>
      <executions>
        <execution>
          <phase>generate-resources</phase>
          <goals>
            <goal>build-classpath</goal>
          </goals>
        </execution>
      </executions>
      <configuration>
        <outputFilterFile>true</outputFilterFile>
        <outputFile>${project.build.directory}/classpath.properties</outputFile>
      </configuration>
    </plugin>
    <plugin>
      <artifactId>maven-jar-plugin</artifactId>
      <configuration>
        <archive>
          <manifestFile>
            ${project.build.outputDirectory}/META-INF/MANIFEST.MF
          </manifestFile>
        </archive>
      </configuration>
    </plugin>
  </plugins>
  <filters>
    <filter>${project.build.directory}/classpath.properties</filter>
  </filters>
  <resources>
    <resource>
      <directory>src/main/resources</directory>
      <filtering>true</filtering>
    </resource>
  </resources>
</build>

Then specify the following in src/main/resources/META-INF/Manifest.MF:

Bundle-Version: 4.0.0
...
Classpath: ${classpath};[specify additional entries here]

Note: there is a bug with this processing using the standard window path separator (\), the generate path is stripped of separators (note it works fine on Linux). You can get the classpath to be generated correctly for Windows by specifying <fileSeparator>\\\\</fileSeparator> in the build-classpath goal's configuration.


You can customise the manifest in the jar-plugin's configuration. To do so you'd add something like this to your pom.

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-jar-plugin</artifactId>
  ...
  <configuration>
    <archive>
      <index>true</index>
      <manifest>
        <addClasspath>true</addClasspath>
      </manifest>
      <manifestEntries>
        <mode>development</mode>
        <url>${pom.url}</url>
        <key>value</key>
      </manifestEntries>
    </archive>
  </configuration>
  ...
</plugin>

The full archiver specification provides quite a few options. See the examples page for options on configuring the classpath.

If none of these work for you, you can define your own Manifest, set up properties containing the required entries and use a filter to populate the manifest with those properties

link|flag
I know how to use filtering, but I couldn't figure out how to filter the classpath into a file. Is there a built-in property for the classpath? – Ken Liu Oct 2 at 17:43
I included a link to the filtering section of the getting started guide, you just need to configure the resources directory that contains the manifest to enable filtering. The page includes an example to do this – Rich Seller Oct 2 at 17:49
Thanks, but what is the magic maven property that inserts the classpath into the filtered manifest file? – Ken Liu Oct 2 at 17:55
+1 nice approach to a very dirty situation – Pascal Thivent Oct 2 at 20:32
Thanks, it's the first time I've tried generating a filter file, opens some interesting possibilities... – Rich Seller Oct 2 at 20:33
show 1 more comment

Your Answer

Get an OpenID
or

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