mirror of
https://github.com/status-im/ethereumj-personal.git
synced 2025-01-10 03:45:44 +00:00
20 lines
313 B
Groovy
20 lines
313 B
Groovy
wrapper.gradleVersion = '2.2.1'
|
|
|
|
allprojects {
|
|
apply plugin: 'eclipse'
|
|
}
|
|
|
|
subprojects {
|
|
apply plugin: 'java'
|
|
|
|
group = 'org.ethereum'
|
|
version = '0.8.2-SNAPSHOT'
|
|
|
|
compileJava.options.encoding = 'UTF-8'
|
|
compileTestJava.options.encoding = 'UTF-8'
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
}
|