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-03-27 08:52:29 +00:00
version = '0.8.3-SNAPSHOT'
2014-12-30 21:05:50 +00:00
compileJava.options.encoding = 'UTF-8'
2015-03-16 22:30:07 +00:00
compileJava.options.compilerArgs << '-XDignore.symbol.file'
2014-12-30 21:05:50 +00:00
compileTestJava.options.encoding = 'UTF-8'
repositories {
jcenter()
}
}