Hi,
I used dependency jars for my J2EE projects.
One of the missing feature is the lack of classpath in
the Manifest file.
For instance, I added this feature in the plugin jar
and war for my own
purpose.
Here's the project.xml look like for jar projects:
....
<dependency>
<groupId>myGroup</groupId>
<artifactId>myartifactId</artifactId>
<version>1.0</version>
<properties>
<jar.manifest.classpath>true</jar.manifest.classpath>
</properties>
</dependency>
Also, for web module (project.xml):
....
<dependency>
<groupId>myGroup</groupId>
<artifactId>myartifactId</artifactId>
<version>1.0</version>
<properties>
<war.bundle>false</war.bundle>
<war.manifest.classpath>true</war.manifest.classpath>
</properties>
</dependency>
It would be nice to add this feature in the jar and
war plugins.
Thank you
Robert
__________________________________
Do you Yahoo!?
Yahoo! Hotjobs: Enter the "Signing Bonus" Sweepstakes
http://hotjobs.sweepstakes.yahoo.com/signingbonus
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]