You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2011/03/04 21:32:46 UTC

svn commit: r1078119 - in /lucene/dev/branches/branch_3x: ./ lucene/ lucene/common-build.xml solr/ solr/build.xml

Author: rmuir
Date: Fri Mar  4 20:32:45 2011
New Revision: 1078119

URL: http://svn.apache.org/viewvc?rev=1078119&view=rev
Log:
this task was corrupting all files to platform-encoding in the .zip distribution

Modified:
    lucene/dev/branches/branch_3x/   (props changed)
    lucene/dev/branches/branch_3x/lucene/   (props changed)
    lucene/dev/branches/branch_3x/lucene/common-build.xml
    lucene/dev/branches/branch_3x/solr/   (props changed)
    lucene/dev/branches/branch_3x/solr/build.xml

Modified: lucene/dev/branches/branch_3x/lucene/common-build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/lucene/common-build.xml?rev=1078119&r1=1078118&r2=1078119&view=diff
==============================================================================
--- lucene/dev/branches/branch_3x/lucene/common-build.xml (original)
+++ lucene/dev/branches/branch_3x/lucene/common-build.xml Fri Mar  4 20:32:45 2011
@@ -709,7 +709,7 @@
           javacchome="${javacc.home}"
           jdkversion="${javac.source}"
       />
-      <fixcrlf srcdir="@{outputDir}" includes="*.java">
+      <fixcrlf srcdir="@{outputDir}" includes="*.java" encoding="UTF-8">
         <containsregexp expression="Generated.*By.*JavaCC"/>
       </fixcrlf>
     </sequential>

Modified: lucene/dev/branches/branch_3x/solr/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/solr/build.xml?rev=1078119&r1=1078118&r2=1078119&view=diff
==============================================================================
--- lucene/dev/branches/branch_3x/solr/build.xml (original)
+++ lucene/dev/branches/branch_3x/solr/build.xml Fri Mar  4 20:32:45 2011
@@ -803,6 +803,7 @@
     <untar src="${dest}/${fullnamever}-src.tar" dest="${dest}"/>
 
     <fixcrlf srcdir="${dest}/${fullnamever}"
+       encoding="UTF-8"
        eol="crlf"
        includes="**/*.txt **/*.xml **/*.java **/*.html **/*.csv **/*.css **/*.properties **/*.jsp **/*.xsl **/*.py **/*.rb **/*.js **/*.json **/*.pl"
      />
@@ -862,6 +863,7 @@
     <untar src="${dest}/${fullnamever}.tar" dest="${dest}"/>
 
     <fixcrlf srcdir="${dest}/${fullnamever}"
+       encoding="UTF-8"
        eol="crlf"
        includes="**/*.txt **/*.xml **/*.java **/*.html **/*.csv **/*.css **/*.properties **/*.jsp **/*.xsl **/*.py **/*.rb **/*.js **/*.json **/*.pl"
      />