Change Maven tags to match Jelly convention (keep old versions too for now)

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113861 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
brett
2003-08-20 12:37:18 +00:00
parent 97740a652d
commit b25b571414
3 changed files with 10 additions and 10 deletions

View File

@@ -9,13 +9,13 @@
<classpath>
<j:if test="${sourcesPresent}">
<maven:make-relative-path var="srcDir" basedir="${basedir}" path="${pom.build.sourceDirectory}"/>
<maven:makeRelativePath var="srcDir" basedir="${basedir}" path="${pom.build.sourceDirectory}"/>
<classpathentry kind="src" path="${srcDir}"/>
</j:if>
<j:if test="${unitTestSourcesPresent}">
<ant:echo>Contains JUnit tests</ant:echo>
<maven:make-relative-path var="testSrcDir" basedir="${basedir}" path="${pom.build.unitTestSourceDirectory}"/>
<maven:makeRelativePath var="testSrcDir" basedir="${basedir}" path="${pom.build.unitTestSourceDirectory}"/>
<!-- Eclipse supports an output directory per input directory -->
<j:set var="testOutputDir" value="${maven.eclipse.test.output.dir}"/>
@@ -24,7 +24,7 @@
value="${pom.getPluginContext('maven-test-plugin').getVariable('maven.test.dest')}"/>
</j:if>
<maven:make-relative-path var="testOutputDir" basedir="${basedir}" path="${testOutputDir}" />
<maven:makeRelativePath var="testOutputDir" basedir="${basedir}" path="${testOutputDir}" />
<ant:echo>Setting compile of ${testSrcDir} to ${testOutputDir}</ant:echo>
<classpathentry kind="src" path="${testSrcDir}" output="${testOutputDir}"/>
@@ -65,7 +65,7 @@
<j:if test="${cactusSourcePresent == 'true'}">
<ant:echo>Contains Cactus Tests!</ant:echo>
<maven:make-relative-path var="testSrcDir" basedir="${basedir}" path="${cactusSrcDir}" />
<maven:makeRelativePath var="testSrcDir" basedir="${basedir}" path="${cactusSrcDir}" />
<classpathentry kind="src" path="${testSrcDir}"/>
<j:set var="depVersion">${pom.getPluginContext('maven-cactus-plugin').getVariable('plugin').getDependency('cactus').getVersion()}</j:set>
@@ -95,7 +95,7 @@
<j:if test="${empty outputDir}">
<j:set var="outputDir" value="${maven.build.dest}"/>
</j:if>
<maven:make-relative-path var="outputDir" basedir="${basedir}" path="${outputDir}" />
<maven:makeRelativePath var="outputDir" basedir="${basedir}" path="${outputDir}" />
<classpathentry kind="output" path="${outputDir}"/>
<ant:echo>Setting default output directory to ${outputDir}</ant:echo>
</classpath>