MPDIST-27: Zip archives should use CRLF line endings on txt files. Patch submitted by Phil Steitz.

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@343960 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
ltheussl
2005-11-13 21:14:44 +00:00
parent c08146a0a4
commit fd50c2ebfa
2 changed files with 9 additions and 0 deletions

8
dist/plugin.jelly vendored
View File

@@ -159,6 +159,10 @@
<ant:delete file="${maven.dist.dir}/${maven.final.name}.tar"/>
<!-- Use CRLF line endings for text files in zip archive -->
<ant:fixcrlf srcdir="${maven.dist.bin.archive.dir}"
eol="crlf" includes="**/*.txt"/>
<!-- Create a zip file -->
<ant:zip zipfile="${maven.dist.dir}/${maven.final.name}.zip">
<ant:zipfileset dir="${maven.dist.bin.archive.dir}"/>
@@ -182,6 +186,10 @@
<ant:delete file="${maven.dist.dir}/${maven.final.name}-src.tar"/>
<!-- Use CRLF line endings for text files in zip archive -->
<ant:fixcrlf srcdir="${maven.dist.src.archive.dir}"
eol="crlf" includes="**/*.txt"/>
<!-- Create a zip file -->
<ant:zip zipfile="${maven.dist.dir}/${maven.final.name}-src.zip">
<ant:zipfileset dir="${maven.dist.src.archive.dir}"/>

View File

@@ -25,6 +25,7 @@
</properties>
<body>
<release version="1.7-SNAPSHOT" date="in SVN">
<action dev="ltheussl" type="fix" issue="MPDIST-27" due-to="Phil Steitz">Zip archives should use CRLF line endings on txt files.</action>
<action dev="aheritier" type="update" issue="MAVEN-1712">Update dependencies to match ones in maven 1.1 core and to unify them between plugins. The following dependencies are updated :
<ul>
<li>commons-logging v1.0.3 -> v1.0.4</li>