Skip to content
Snippets Groups Projects
Commit 3821885f authored by gmantele's avatar gmantele
Browse files

[ALL] Set the encoding to UTF-8 for java compilation.

parent 904b6a31
No related branches found
No related tags found
No related merge requests found
......@@ -87,7 +87,7 @@
<target name="compileLib" depends="clean,junitValidation" description="Build all the classes of the ADQL library. This target is particularly usefull because it lets highlighting missing dependencies.">
<mkdir dir="${compileDir}" />
<javac destdir="${compileDir}" srcdir="${srcDir}" includes="${includesList}" includeantruntime="false">
<javac destdir="${compileDir}" srcdir="${srcDir}" includes="${includesList}" includeantruntime="false" encoding="utf8">
<classpath refid="adql.classpath" />
</javac>
</target>
......
......@@ -102,7 +102,7 @@
</target>
<!-- LIB & SOURCES -->
<target name="clean" depends="junitValidation" description="Delete the JARs for the library (classes) and for its sources for the set version.">
<target name="clean" description="Delete the JARs for the library (classes) and for its sources for the set version.">
<delete file="${libJarFile}" failonerror="false" />
<delete file="${srcJarFile}" failonerror="false" />
<delete dir="${compileDir}" failonerror="false" />
......@@ -110,7 +110,7 @@
<target name="compileLib" depends="clean,junitValidation" description="Build all the classes of the TAP library. This target is particularly usefull because it lets highlighting missing dependencies.">
<mkdir dir="${compileDir}" />
<javac destdir="${compileDir}" srcdir="${srcDir}" includes="${includesList}" includeantruntime="false">
<javac destdir="${compileDir}" srcdir="${srcDir}" includes="${includesList}" includeantruntime="false" encoding="utf8">
<classpath refid="tap.classpath" />
</javac>
</target>
......@@ -153,4 +153,4 @@
<jar destfile="${javadocJarFile}" basedir="${javadocDir}" />
</target>
</project>
\ No newline at end of file
</project>
......@@ -79,7 +79,7 @@
<target name="compileLib" depends="clean,junitValidation" description="Build all the classes of the UWS library. This target is particularly usefull because it lets highlighting missing dependencies.">
<mkdir dir="${compileDir}" />
<javac destdir="${compileDir}" srcdir="${srcDir}" includes="${includesList}" includeantruntime="false">
<javac destdir="${compileDir}" srcdir="${srcDir}" includes="${includesList}" includeantruntime="false" encoding="utf8">
<classpath refid="uws.classpath" />
</javac>
</target>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment