summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWesley Wolfe <weswolf@aol.com>2013-08-28 00:48:36 -0500
committerWesley Wolfe <weswolf@aol.com>2013-08-28 01:41:53 -0500
commit83ba0892829c5b801c6f07a7664bec1fdfe7299a (patch)
treea795f2afd81127d2ada504ed9d7f3a0b0c34398c
parent94daac860a0a1314652df34567e6c80c5127ef9f (diff)
downloadbukkit-83ba0892829c5b801c6f07a7664bec1fdfe7299a.tar
bukkit-83ba0892829c5b801c6f07a7664bec1fdfe7299a.tar.gz
bukkit-83ba0892829c5b801c6f07a7664bec1fdfe7299a.tar.lz
bukkit-83ba0892829c5b801c6f07a7664bec1fdfe7299a.tar.xz
bukkit-83ba0892829c5b801c6f07a7664bec1fdfe7299a.zip
Add source encoding to the maven compiler plugin.
This change adds the source encoding to the maven compiler plugin, which will strictly enforce build consistency on multiple platforms and address possible compilation issues on some of the source files. The source encoding unintuitively is system-specified by default.
-rw-r--r--pom.xml1
1 files changed, 1 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index fbdc3c3b..61d07b97 100644
--- a/pom.xml
+++ b/pom.xml
@@ -47,6 +47,7 @@
<configuration>
<source>1.6</source>
<target>1.6</target>
+ <encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>