Author: ebourg
Date: Wed Aug 1 14:01:37 2018
New Revision: 1837238
URL: http://svn.apache.org/viewvc?rev=1837238&view=rev
Log:
Also convert the Messages*.properties file to ASCII
Modified:
tomcat/trunk/build.xml
Modified: tomcat/trunk/build.xml
URL:
http://svn.apache.org/viewvc/tomcat/trunk/build.xml?rev=1837238&r1=1837237&r2=1837238&view=diff
==============================================================================
--- tomcat/trunk/build.xml (original)
+++ tomcat/trunk/build.xml Wed Aug 1 14:01:37 2018
@@ -703,6 +703,7 @@
<fileset dir="java">
<include name="**/*.properties"/>
<exclude name="**/LocalStrings*.properties"/>
+ <exclude name="**/Messages*.properties"/>
<include name="**/*.dtd"/>
<include name="**/*.tasks"/>
<include name="**/*.xsd"/>
@@ -713,7 +714,7 @@
<!-- Convert the message files from UTF-8 to ASCII. This can be removed
after upgrading to Java 9+ as the minimum JRE and specifying the encoding
when loading the ResourceBundles -->
- <native2ascii src="java" dest="${tomcat.classes}"
includes="**/LocalStrings*.properties" encoding="UTF-8"/>
+ <native2ascii src="java" dest="${tomcat.classes}"
includes="**/LocalStrings*.properties,**/Messages*.properties"
encoding="UTF-8"/>
</target>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]