Made source file encoding explicit.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1413060 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
04c63b1630
commit
5e0c6f420b
|
@ -97,6 +97,9 @@
|
|||
|
||||
<!-- Should Java compilations set the 'optimize' compiler option? -->
|
||||
<property name="compile.optimize" value="true"/>
|
||||
|
||||
<!-- File encoding -->
|
||||
<property name="source.encoding" value="UTF-8"/>
|
||||
|
||||
<!-- JDK level -->
|
||||
<property name="compile.source" value="1.5"/>
|
||||
|
@ -162,6 +165,7 @@
|
|||
debug="${compile.debug}"
|
||||
deprecation="${compile.deprecation}"
|
||||
includeantruntime="false"
|
||||
encoding="${source.encoding}"
|
||||
optimize="${compile.optimize}">
|
||||
<classpath refid="compile.classpath"/>
|
||||
</javac>
|
||||
|
@ -176,6 +180,7 @@
|
|||
destdir="${build.home}/test-classes"
|
||||
debug="${compile.debug}"
|
||||
deprecation="${compile.deprecation}"
|
||||
encoding="${source.encoding}"
|
||||
includeantruntime="false"
|
||||
optimize="${compile.optimize}">
|
||||
<classpath refid="test.classpath"/>
|
||||
|
@ -236,6 +241,9 @@
|
|||
author="true"
|
||||
private="true"
|
||||
version="true"
|
||||
encoding="${source.encoding}"
|
||||
charset="${source.encoding}"
|
||||
docencoding="${source.encoding}"
|
||||
doctitle="<h1>${component.title} ${component.version}</h1>"
|
||||
windowtitle="${component.title} ${component.version}"
|
||||
bottom="Copyright (c) 2003-${current.year} Apache Software Foundation"
|
||||
|
|
Loading…
Reference in New Issue