Fix MAVEN-938
git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@114209 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
43d4ffc276
commit
ae3c2e2070
@ -5,7 +5,7 @@
|
||||
<pomVersion>3</pomVersion>
|
||||
<id>maven-ant-plugin</id>
|
||||
<name>Maven Ant Plug-in</name>
|
||||
<currentVersion>1.5</currentVersion>
|
||||
<currentVersion>1.6-SNAPSHOT</currentVersion>
|
||||
<description>Generates ant build files from a maven project, so that plain ant users can build your project</description>
|
||||
<shortDescription>Generate Ant build file</shortDescription>
|
||||
<url>http://maven.apache.org/reference/plugins/ant/</url>
|
||||
|
||||
@ -12,7 +12,10 @@
|
||||
<j:set var="repo">${repos[0]}</j:set>
|
||||
<!-- set up relative paths -->
|
||||
<maven:makeRelativePath var="srcDir" basedir="${basedir}" path="${pom.build.sourceDirectory}" separator="/"/>
|
||||
|
||||
<j:if test="${unitTestSourcesPresent == 'true'}">
|
||||
<maven:makeRelativePath var="testSrcDir" basedir="${basedir}" path="${pom.build.unitTestSourceDirectory}" separator="/"/>
|
||||
</j:if>
|
||||
|
||||
|
||||
<x:comment>
|
||||
@ -25,8 +28,11 @@
|
||||
<property name="defaulttargetdir" value="target"/>
|
||||
<property name="libdir" value="target/lib" />
|
||||
<property name="classesdir" value="target/classes"/>
|
||||
|
||||
<j:if test="${unitTestSourcesPresent == 'true'}">
|
||||
<property name="testclassesdir" value="target/test-classes"/>
|
||||
<property name="testreportdir" value="target/test-reports"/>
|
||||
</j:if>
|
||||
|
||||
<property name="distdir" value="dist"/>
|
||||
<property name="javadocdir" value="dist/docs/api"/>
|
||||
|
||||
@ -7,7 +7,13 @@
|
||||
|
||||
<body>
|
||||
|
||||
<release version="1.5" date="in CVS">
|
||||
<release version="1.6" date="in CVS">
|
||||
<action dev="dion" type="fix">
|
||||
Check unit test source dir exists before making relative path
|
||||
</action>
|
||||
</release>
|
||||
|
||||
<release version="1.5" date="Unknown">
|
||||
<action dev="dion" type="fix">
|
||||
Make relative paths output for various pom values. MAVEN-909
|
||||
</action>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user