ethereumj-personal/build.gradle

22 lines
378 B
Groovy
Raw Normal View History

wrapper.gradleVersion = '2.2.1'
allprojects {
apply plugin: 'eclipse'
}
subprojects {
apply plugin: 'java'
group = 'org.ethereum'
2015-04-02 17:59:13 +03:00
version = '0.8.4-SNAPSHOT'
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'
repositories {
jcenter()
}
}