summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorWesley Wolfe <weswolf@aol.com>2013-08-28 00:51:55 -0500
committerWesley Wolfe <weswolf@aol.com>2013-08-28 01:45:58 -0500
commit4667e9493c0479729dd47238cc9e06efe54e0b12 (patch)
tree2fd9702f29eed93c68d1bdc75f37ee6114e0387c /pom.xml
parent2e7f66787dd01e1a5ddaec37c75b54f0f1ee2ce1 (diff)
downloadcraftbukkit-4667e9493c0479729dd47238cc9e06efe54e0b12.tar
craftbukkit-4667e9493c0479729dd47238cc9e06efe54e0b12.tar.gz
craftbukkit-4667e9493c0479729dd47238cc9e06efe54e0b12.tar.lz
craftbukkit-4667e9493c0479729dd47238cc9e06efe54e0b12.tar.xz
craftbukkit-4667e9493c0479729dd47238cc9e06efe54e0b12.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.
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml1
1 files changed, 1 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index a46ecbd9..e9fafd17 100644
--- a/pom.xml
+++ b/pom.xml
@@ -280,6 +280,7 @@
<configuration>
<source>1.6</source>
<target>1.6</target>
+ <encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>