You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by lt...@apache.org on 2006/06/09 22:14:16 UTC

svn commit: r413149 - in /maven/maven-1/plugins/trunk/dist: plugin.jelly xdocs/changes.xml

Author: ltheussl
Date: Fri Jun  9 13:14:16 2006
New Revision: 413149

URL: http://svn.apache.org/viewvc?rev=413149&view=rev
Log:
PR: MPDIST-12
Replace deprecated maven.src.dir by pom.build.sourceDirectory.

Modified:
    maven/maven-1/plugins/trunk/dist/plugin.jelly
    maven/maven-1/plugins/trunk/dist/xdocs/changes.xml

Modified: maven/maven-1/plugins/trunk/dist/plugin.jelly
URL: http://svn.apache.org/viewvc/maven/maven-1/plugins/trunk/dist/plugin.jelly?rev=413149&r1=413148&r2=413149&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/dist/plugin.jelly (original)
+++ maven/maven-1/plugins/trunk/dist/plugin.jelly Fri Jun  9 13:14:16 2006
@@ -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>

Modified: maven/maven-1/plugins/trunk/dist/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/maven/maven-1/plugins/trunk/dist/xdocs/changes.xml?rev=413149&r1=413148&r2=413149&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/dist/xdocs/changes.xml (original)
+++ maven/maven-1/plugins/trunk/dist/xdocs/changes.xml Fri Jun  9 13:14:16 2006
@@ -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>