evenisse 2003/07/09 01:28:04
Modified: src/plugins-build/jnlp plugin.jelly
Log:
Use absolutePath. Thanks to Dion.
Revision Changes Path
1.14 +2 -4 maven/src/plugins-build/jnlp/plugin.jelly
Index: plugin.jelly
===================================================================
RCS file: /home/cvs/maven/src/plugins-build/jnlp/plugin.jelly,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- plugin.jelly 9 Jul 2003 04:40:07 -0000 1.13
+++ plugin.jelly 9 Jul 2003 08:28:04 -0000 1.14
@@ -165,17 +165,15 @@
<j:forEach var="lib" items="${pom.artifacts}">
<j:set var="dep" value="${lib.dependency}"/>
<j:if test="${dep.getProperty('jnlp.jar')=='true'}">
- <!-- FIXME: why isn't this lib.absolutePath -->
<jarfile:updateManifest
- inputJar="${lib.file.parent}/${lib.file.name}"
+ inputJar="${lib.file.absolutePath}"
manifest="${plugin.resources}/jnlp.manifest"
outputDir="${maven.jnlp.tmpdir}"
/>
</j:if>
<j:if test="${dep.getProperty('jnlp.native.jar')=='true'}">
- <!-- FIXME: why isn't this lib.absolutePath -->
<jarfile:updateManifest
- inputJar="${lib.file.parent}/${lib.file.name}"
+ inputJar="${lib.file.absolutePath}"
manifest="${plugin.resources}/jnlp.manifest"
outputDir="${maven.jnlp.tmpdir}"
/>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]