Remove use of resources:copy

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113766 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
dion 2003-07-31 06:47:11 +00:00
parent c87f27a48d
commit 77125ff59f
2 changed files with 7 additions and 6 deletions

View File

@ -106,7 +106,7 @@
description="Copy any resources that must be present in the deployed JAR file">
<j:if test="${!pom.build.resources.isEmpty()}">
<resources:copy
<maven:copy-resources
resources="${pom.build.resources}"
todir="${maven.build.dest}"/>
</j:if>

View File

@ -1,11 +1,12 @@
<?xml version="1.0"?>
<project
xmlns:j="jelly:core"
xmlns:u="jelly:util"
xmlns:resources="resources"
xmlns:ant="jelly:ant"
xmlns:define="jelly:define">
xmlns:define="jelly:define"
xmlns:j="jelly:core"
xmlns:maven="jelly:maven"
xmlns:u="jelly:util">
<goal name="test"
description="Test the application"
@ -309,7 +310,7 @@
<j:if test="${unitTestSourcesPresent}">
<j:if test="${!pom.build.unitTest.resources.isEmpty()}">
<resources:copy
<maven:copy-resources
resources="${pom.build.unitTest.resources}"
todir="${maven.test.dest}"
/>