Merge pull request #186 from ethereum/utf8

Specify explicit UTF-8 encoding for compilation
This commit is contained in:
Roman Mandeleil 2014-12-30 23:01:32 +02:00
commit 5c873b62a6
1 changed files with 4 additions and 0 deletions

View File

@ -10,6 +10,10 @@ subprojects {
group = 'org.ethereum'
version = '0.7.14-SNAPSHOT'
tasks.withType(Compile) {
options.encoding = 'UTF-8'
}
repositories {
jcenter()
}