summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--build.xml4
-rw-r--r--src/com/iciql/Db.java2
-rw-r--r--src/com/iciql/Define.java2
-rw-r--r--src/com/iciql/Iciql.java2
-rw-r--r--src/com/iciql/IciqlException.java2
-rw-r--r--src/com/iciql/SQLDialect.java2
-rw-r--r--src/com/iciql/SQLDialectDefault.java2
-rw-r--r--src/com/iciql/TableDefinition.java2
-rw-r--r--src/com/iciql/TableInspector.java2
-rw-r--r--tests/com/iciql/test/ForeignKeyTest.java2
-rw-r--r--tests/com/iciql/test/IciqlSuite.java2
-rw-r--r--tests/com/iciql/test/TransactionTest.java2
-rw-r--r--tests/com/iciql/test/models/CategoryAnnotationOnly.java2
-rw-r--r--tests/com/iciql/test/models/ProductAnnotationOnlyWithForeignKey.java2
14 files changed, 15 insertions, 15 deletions
diff --git a/build.xml b/build.xml
index 351c43b..51401e1 100644
--- a/build.xml
+++ b/build.xml
@@ -94,7 +94,7 @@
<delete dir="${project.build.dir}" />
<mkdir dir="${project.build.dir}" />
- <javac debug="true" srcdir="${basedir}/src" destdir="${project.build.dir}">
+ <javac encoding="utf-8" debug="true" srcdir="${basedir}/src" destdir="${project.build.dir}">
<include name="com/iciql/build/Build.java" />
<include name="com/iciql/Constants.java" />
<include name="com/iciql/utils/Utils.java" />
@@ -108,7 +108,7 @@
<include name="*.jar" />
</fileset>
</path>
- <javac debug="true" destdir="${project.build.dir}" failonerror="false">
+ <javac encoding="utf-8" debug="true" destdir="${project.build.dir}" failonerror="false">
<src path="${basedir}/src" />
<src path="${basedir}/tests" />
<classpath refid="master-classpath" />
diff --git a/src/com/iciql/Db.java b/src/com/iciql/Db.java
index d7888dc..ecd373c 100644
--- a/src/com/iciql/Db.java
+++ b/src/com/iciql/Db.java
@@ -1,7 +1,7 @@
/*
* Copyright 2004-2011 H2 Group.
* Copyright 2011 James Moger.
- * Copyright 2012 Frederic Gaillard.
+ * Copyright 2012 Frédéric Gaillard.
* Copyright 2012 Alex Telepov.
*
* Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/src/com/iciql/Define.java b/src/com/iciql/Define.java
index 5d7000e..1810a4b 100644
--- a/src/com/iciql/Define.java
+++ b/src/com/iciql/Define.java
@@ -1,7 +1,7 @@
/*
* Copyright 2004-2011 H2 Group.
* Copyright 2011 James Moger.
- * Copyright 2012 Frédéric Gaillard.
+ * Copyright 2012 Frédéric Gaillard.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/src/com/iciql/Iciql.java b/src/com/iciql/Iciql.java
index 9956ac4..9f73ffa 100644
--- a/src/com/iciql/Iciql.java
+++ b/src/com/iciql/Iciql.java
@@ -1,7 +1,7 @@
/*
* Copyright 2004-2011 H2 Group.
* Copyright 2011 James Moger.
- * Copyright 2012 Frédéric Gaillard.
+ * Copyright 2012 Frédéric Gaillard.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/src/com/iciql/IciqlException.java b/src/com/iciql/IciqlException.java
index b457a10..3f27b73 100644
--- a/src/com/iciql/IciqlException.java
+++ b/src/com/iciql/IciqlException.java
@@ -1,6 +1,6 @@
/*
* Copyright 2011 James Moger.
- * Copyright 2012 Frederic Gaillard
+ * Copyright 2012 Frédéric Gaillard
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/src/com/iciql/SQLDialect.java b/src/com/iciql/SQLDialect.java
index 5e9625f..f62168e 100644
--- a/src/com/iciql/SQLDialect.java
+++ b/src/com/iciql/SQLDialect.java
@@ -1,7 +1,7 @@
/*
* Copyright 2004-2011 H2 Group.
* Copyright 2011 James Moger.
- * Copyright 2012 Frédéric Gaillard.
+ * Copyright 2012 Frédéric Gaillard.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/src/com/iciql/SQLDialectDefault.java b/src/com/iciql/SQLDialectDefault.java
index afdc36d..364db7b 100644
--- a/src/com/iciql/SQLDialectDefault.java
+++ b/src/com/iciql/SQLDialectDefault.java
@@ -1,7 +1,7 @@
/*
* Copyright 2004-2011 H2 Group.
* Copyright 2011 James Moger.
- * Copyright 2012 Frédéric Gaillard.
+ * Copyright 2012 Frédéric Gaillard.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/src/com/iciql/TableDefinition.java b/src/com/iciql/TableDefinition.java
index e96b61c..6d8cb6e 100644
--- a/src/com/iciql/TableDefinition.java
+++ b/src/com/iciql/TableDefinition.java
@@ -1,7 +1,7 @@
/*
* Copyright 2004-2011 H2 Group.
* Copyright 2011 James Moger.
- * Copyright 2012 Frederic Gaillard.
+ * Copyright 2012 Frédéric Gaillard.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/src/com/iciql/TableInspector.java b/src/com/iciql/TableInspector.java
index fa6722d..b717203 100644
--- a/src/com/iciql/TableInspector.java
+++ b/src/com/iciql/TableInspector.java
@@ -1,7 +1,7 @@
/*
* Copyright 2004-2011 H2 Group.
* Copyright 2011 James Moger.
- * Copyright 2012 Frédéric Gaillard.
+ * Copyright 2012 Frédéric Gaillard.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/tests/com/iciql/test/ForeignKeyTest.java b/tests/com/iciql/test/ForeignKeyTest.java
index ed85cbc..6b4a3e7 100644
--- a/tests/com/iciql/test/ForeignKeyTest.java
+++ b/tests/com/iciql/test/ForeignKeyTest.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2012 Frédéric Gaillard.
+ * Copyright 2012 Frédéric Gaillard.
* Copyright 2012 James Moger.
*
* Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/tests/com/iciql/test/IciqlSuite.java b/tests/com/iciql/test/IciqlSuite.java
index 1202d0e..a474404 100644
--- a/tests/com/iciql/test/IciqlSuite.java
+++ b/tests/com/iciql/test/IciqlSuite.java
@@ -1,6 +1,6 @@
/*
* Copyright 2011 James Moger.
- * Copyright 2012 Frederic Gaillard.
+ * Copyright 2012 Frédéric Gaillard.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/tests/com/iciql/test/TransactionTest.java b/tests/com/iciql/test/TransactionTest.java
index d1c6749..026366e 100644
--- a/tests/com/iciql/test/TransactionTest.java
+++ b/tests/com/iciql/test/TransactionTest.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2012 Frederic Gaillard.
+ * Copyright 2012 Frédéric Gaillard.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/tests/com/iciql/test/models/CategoryAnnotationOnly.java b/tests/com/iciql/test/models/CategoryAnnotationOnly.java
index 3e1c5ee..b96ab04 100644
--- a/tests/com/iciql/test/models/CategoryAnnotationOnly.java
+++ b/tests/com/iciql/test/models/CategoryAnnotationOnly.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2012 Frédéric Gaillard.
+ * Copyright 2012 Frédéric Gaillard.
* Copyright 2012 James Moger.
*
* Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/tests/com/iciql/test/models/ProductAnnotationOnlyWithForeignKey.java b/tests/com/iciql/test/models/ProductAnnotationOnlyWithForeignKey.java
index b17074e..4268a89 100644
--- a/tests/com/iciql/test/models/ProductAnnotationOnlyWithForeignKey.java
+++ b/tests/com/iciql/test/models/ProductAnnotationOnlyWithForeignKey.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2012 Frédéric Gaillard.
+ * Copyright 2012 Frédéric Gaillard.
* Copyright 2012 James Moger.
*
* Licensed under the Apache License, Version 2.0 (the "License");