From 3821885f841175df941d1f4307b6f8dca717989c Mon Sep 17 00:00:00 2001
From: gmantele <gmantele@ari.uni-heidelberg.de>
Date: Tue, 10 Mar 2015 17:00:01 +0100
Subject: [PATCH] [ALL] Set the encoding to UTF-8 for java compilation.

---
 buildADQL.xml | 2 +-
 buildTAP.xml  | 6 +++---
 buildUWS.xml  | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/buildADQL.xml b/buildADQL.xml
index 7ce2e9a..1fe5a32 100644
--- a/buildADQL.xml
+++ b/buildADQL.xml
@@ -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>
diff --git a/buildTAP.xml b/buildTAP.xml
index 4d1100e..e15af9b 100644
--- a/buildTAP.xml
+++ b/buildTAP.xml
@@ -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>
diff --git a/buildUWS.xml b/buildUWS.xml
index 1322e23..c150a02 100644
--- a/buildUWS.xml
+++ b/buildUWS.xml
@@ -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>
-- 
GitLab