Commit 3821885f authored by gmantele's avatar gmantele
Browse files

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

parent 904b6a31
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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>
+3 −3
Original line number Diff line number Diff line
@@ -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>
+1 −1
Original line number Diff line number Diff line
@@ -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>