Removing none ASCII character from Java file and explicit setting of UTF-8 for sources

git-svn-id: https://svn.apache.org/repos/asf/incubator/odf/trunk@1732662 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/generator/pom.xml b/generator/pom.xml
index b07514d..29dc826 100644
--- a/generator/pom.xml
+++ b/generator/pom.xml
@@ -13,9 +13,10 @@
     <version>0.8.11-incubating-SNAPSHOT</version>
     <packaging>pom</packaging>
 
-    <properties>
-        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-    </properties>
+	<properties>
+		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+		<maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ss</maven.build.timestamp.format>
+	</properties>
 
     <!-- Build Settings -->
     <build>
diff --git a/generator/schema2template/pom.xml b/generator/schema2template/pom.xml
index da74207..0d2d8d0 100644
--- a/generator/schema2template/pom.xml
+++ b/generator/schema2template/pom.xml
@@ -51,6 +51,10 @@
 			<scope>test</scope>
 		</dependency>
 	</dependencies>
+    <properties>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+        <maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ss</maven.build.timestamp.format>
+    </properties>
 	
 	<!-- Build Settings -->
 	<build>
@@ -106,7 +110,7 @@
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-compiler-plugin</artifactId>
-				<version>2.0.2</version>
+				<version>2.3.2</version>
 				<configuration>
 					<source>1.5</source>
 					<target>1.5</target>
diff --git a/generator/schema2template/src/main/java/schema2template/example/odf/OdfConfigFileHandler.java b/generator/schema2template/src/main/java/schema2template/example/odf/OdfConfigFileHandler.java
index a337e1f..e2c022c 100644
--- a/generator/schema2template/src/main/java/schema2template/example/odf/OdfConfigFileHandler.java
+++ b/generator/schema2template/src/main/java/schema2template/example/odf/OdfConfigFileHandler.java
@@ -35,12 +35,14 @@
 import org.xml.sax.SAXException;
 import org.xml.sax.helpers.DefaultHandler;
 
+
+ // ToDo: Shall we keep one config file or shall we split them?!
+ // Java specific + other separating??
+
 /**
- * Often Process the custom configuration data .xml
- * Liest nur die config.xml
- * Soll man die Konfiguration in einer behalten, oder aufsplitten!
- * Java speczifische + anderes aufteilen
- * Handler für existierende config.xml
+ * Often Process the custom configuration data XML
+ * Reads only the config.xml
+ * Handler for existing config.xml
  */
 class OdfConfigFileHandler extends DefaultHandler {
 
@@ -210,7 +212,7 @@
      *
      * @param cf Config file
      */
-    public static void readConfigFile(File cf, Map<String, String> elementBaseNames, 
+    public static void readConfigFile(File cf, Map<String, String> elementBaseNames,
             Map<String, OdfModel.AttributeDefaults> attributeDefaults, Map<String, List<String>> elementStyleFamilies,
             Map<String, String[]> datatypeValueConversion) throws Exception {
 
diff --git a/taglets/pom.xml b/taglets/pom.xml
index a07359c..52e4f0f 100644
--- a/taglets/pom.xml
+++ b/taglets/pom.xml
@@ -31,6 +31,10 @@
     <version>0.8.11-incubating-SNAPSHOT</version>
     <packaging>jar</packaging>
 
+	<properties>
+		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+		<maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ss</maven.build.timestamp.format>
+	</properties>
     <!-- Build Settings -->
     <build>
         <plugins>
diff --git a/xslt-runner-task/pom.xml b/xslt-runner-task/pom.xml
index 0843e0a..6f9f01c 100644
--- a/xslt-runner-task/pom.xml
+++ b/xslt-runner-task/pom.xml
@@ -44,7 +44,10 @@
       <artifactId>ant</artifactId>
     </dependency>
   </dependencies>
-
+  <properties>
+	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+	<maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ss</maven.build.timestamp.format>
+  </properties>
 
 
   <!-- Build Settings -->
diff --git a/xslt-runner/pom.xml b/xslt-runner/pom.xml
index 1692b04..01446e4 100644
--- a/xslt-runner/pom.xml
+++ b/xslt-runner/pom.xml
@@ -45,6 +45,10 @@
         <artifactId>xml-apis</artifactId>
     </dependency>	
   </dependencies>
+  <properties>
+	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+	<maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ss</maven.build.timestamp.format>
+  </properties> 
 
   <!-- Build Settings -->
   <build>