2014-12-26 23:51:34 +01:00
|
|
|
wrapper.gradleVersion = '2.2.1'
|
|
|
|
|
2014-12-27 01:15:01 +01:00
|
|
|
allprojects {
|
|
|
|
apply plugin: 'eclipse'
|
|
|
|
}
|
|
|
|
|
2014-12-26 23:51:34 +01:00
|
|
|
subprojects {
|
|
|
|
apply plugin: 'java'
|
|
|
|
|
|
|
|
group = 'org.ethereum'
|
2015-04-02 17:59:13 +03:00
|
|
|
version = '0.8.4-SNAPSHOT'
|
2014-12-26 23:51:34 +01:00
|
|
|
|
2014-12-30 22:05:50 +01:00
|
|
|
compileJava.options.encoding = 'UTF-8'
|
2015-03-17 00:30:07 +02:00
|
|
|
compileJava.options.compilerArgs << '-XDignore.symbol.file'
|
|
|
|
|
2014-12-30 22:05:50 +01:00
|
|
|
compileTestJava.options.encoding = 'UTF-8'
|
2014-12-30 21:54:36 +01:00
|
|
|
|
2014-12-26 23:51:34 +01:00
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
}
|