Add FIXME for problems I can't fix yet

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113597 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
dion
2003-07-04 06:36:24 +00:00
parent e22585b186
commit 5ae5b7f719

View File

@@ -163,6 +163,7 @@
<j:forEach var="dep" items="${pom.dependencies}">
<j:if test="${dep.getProperty('jnlp.jar')=='true'}">
<!-- FIXME: Should use artifacts and artifact.path -->
<jarfile:updateManifest
inputJar="${maven.repo.local}/${dep.artifactDirectory}/jars/${dep.artifact}"
manifest="${plugin.resources}/jnlp.manifest"
@@ -170,6 +171,7 @@
/>
</j:if>
<j:if test="${dep.getProperty('jnlp.native.jar')=='true'}">
<!-- FIXME: Should use artifacts and artifact.path -->
<jarfile:updateManifest
inputJar="${maven.repo.local}/${dep.artifactDirectory}/jars/${dep.artifact}"
manifest="${plugin.resources}/jnlp.manifest"
@@ -215,9 +217,11 @@
<ant:fileset dir="${maven.repo.local}">
<j:forEach var="dep" items="${pom.dependencies}">
<j:if test="${dep.getProperty('jnlp.jar')=='true'}">
<!-- FIXME: Should use artifacts and artifact.path -->
<ant:include name="${dep.artifactDirectory}/jars/${dep.artifact}"/>
</j:if>
<j:if test="${dep.getProperty('jnlp.native.jar')=='true'}">
<!-- FIXME: Should use artifacts and artifact.path -->
<ant:include name="${dep.artifactDirectory}/jars/${dep.artifact}"/>
</j:if>
</j:forEach>