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 @@ ...@@ -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."> <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}" /> <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" /> <classpath refid="adql.classpath" />
</javac> </javac>
</target> </target>
......
...@@ -102,7 +102,7 @@ ...@@ -102,7 +102,7 @@
</target> </target>
<!-- LIB & SOURCES --> <!-- 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="${libJarFile}" failonerror="false" />
<delete file="${srcJarFile}" failonerror="false" /> <delete file="${srcJarFile}" failonerror="false" />
<delete dir="${compileDir}" failonerror="false" /> <delete dir="${compileDir}" failonerror="false" />
...@@ -110,7 +110,7 @@ ...@@ -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."> <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}" /> <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" /> <classpath refid="tap.classpath" />
</javac> </javac>
</target> </target>
...@@ -153,4 +153,4 @@ ...@@ -153,4 +153,4 @@
<jar destfile="${javadocJarFile}" basedir="${javadocDir}" /> <jar destfile="${javadocJarFile}" basedir="${javadocDir}" />
</target> </target>
</project> </project>
\ No newline at end of file
...@@ -79,7 +79,7 @@ ...@@ -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."> <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}" /> <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" /> <classpath refid="uws.classpath" />
</javac> </javac>
</target> </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