#642937 maven-debian-helper: automatically add CLASSPATH to jar files

#642937#5
Date:
2011-09-25 19:56:20 UTC
From:
To:
Hi,

the following pom.xml snippet adds a useful 'Class-Path:' entry to MANIFEST.MF:

      <plugin>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
          <archive>
            <manifest>
              <addClasspath>true</addClasspath>
              <classpathLayoutType>repository</classpathLayoutType>
              <classpathPrefix>/usr/share/maven-repo</classpathPrefix>
            </manifest>
          </archive>
        </configuration>
      </plugin>

It would be nice if maven-debian-helper could support such functionality
automatically.

Cheers,
Torsten