ethereumj-personal/build.gradle
Chris Beams 366f6246ce
Upgrade to JDK 8 compatibility
As of this commit, JDK 8 or better is required to compile or run against
ethereumj.
2014-12-27 03:53:34 +01:00

19 lines
254 B
Groovy

wrapper.gradleVersion = '2.2.1'
allprojects {
apply plugin: 'eclipse'
}
subprojects {
apply plugin: 'java'
sourceCompatibility = 1.8
group = 'org.ethereum'
version = '0.7.15-SNAPSHOT'
repositories {
jcenter()
}
}