Generate manifest classpath entry?

2005-04-11 Thread Wim Deblauwe
Hi,

is it possible to generate a Class-Path entry in the generated
manifest file that includes all dependend jars?

See http://java.sun.com/j2se/1.3/docs/guide/jar/jar.html#Main%20Attributes
for more info

regards,

Wim

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Generate manifest classpath entry?

2005-04-11 Thread Eric Giguere
Yes it is
Take a look at the jar plugin properties:
http://maven.apache.org/reference/plugins/jar/properties.html
In short, you must set the property:
maven.jar.manifest.classpath.add=true
And in your project.xml, in each dependency, add the following property:
   properties
   jar.manifest.classpathtrue/jar.manifest.classpath
   /properties
That should do the trick.
Hope it helps.
Eric.
Wim Deblauwe wrote:
Hi,
is it possible to generate a Class-Path entry in the generated
manifest file that includes all dependend jars?
See http://java.sun.com/j2se/1.3/docs/guide/jar/jar.html#Main%20Attributes
for more info
regards,
Wim
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]