PR: MPDIST-12

Replace deprecated maven.src.dir by pom.build.sourceDirectory.


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@413149 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
ltheussl 2006-06-09 20:14:16 +00:00
parent 083d84c430
commit b58aa9f1e4
2 changed files with 3 additions and 2 deletions

4
dist/plugin.jelly vendored
View File

@ -124,9 +124,9 @@
</j:if>
<!-- Copy Source -->
<util:available file="${maven.src.dir}">
<util:available file="${pom.build.sourceDirectory}">
<ant:copy todir="${maven.dist.src.assembly.dir}/src">
<ant:fileset dir="${maven.src.dir}" />
<ant:fileset dir="${pom.build.sourceDirectory}" />
</ant:copy>
</util:available>
</goal>

View File

@ -25,6 +25,7 @@
</properties>
<body>
<release version="1.7-SNAPSHOT" date="in SVN">
<action dev="ltheussl" type="fix" issue="MPDIST-12">build-src goal does not use <code>pom.build.sourceDirectory</code>.</action>
<action dev="aheritier" type="update">Fix compatibility with the version of ant plugin newer or equal to 1.10.</action>
<action dev="ltheussl" type="update" issue="MPDIST-15" due-to="Fabrizio Giustina">New <code>maven.dist.src.include</code> property.</action>
<action dev="aheritier" type="add" issue="MPDIST-27,MPDIST-28" due-to="Phil Steitz">Allow to configure to which files should use CRLF/LF line endings in archives.</action>