forked from ethereum/ethereumj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
42 lines (31 loc) · 1.15 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
wrapper.gradleVersion = '4.6'
allprojects {
apply plugin: 'eclipse'
if (JavaVersion.current().isJava8Compatible()) {
//Disable lint of javadoc until someone fixes all the html
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}
}
}
def gitCurBranch() {
def branchName = System.getenv('TRAVIS_BRANCH')
if (branchName) return branchName
def process = "git rev-parse --abbrev-ref HEAD".execute()
return process.text.trim()
}
subprojects {
apply plugin: 'java'
apply plugin: 'maven'
def config = new ConfigSlurper().parse(new File("$projectDir/src/main/resources/version.properties").toURI().toURL())
group = 'org.ethereum'
version = config.versionNumber + ("master" == gitCurBranch() ? "-RELEASE" : "-SNAPSHOT")
println("Building version: " + version + " (from branch " + gitCurBranch() + ")")
compileJava.options.encoding = 'UTF-8'
compileJava.options.compilerArgs << '-XDignore.symbol.file'
compileTestJava.options.encoding = 'UTF-8'
repositories {
jcenter()
maven { url "https://dl.bintray.com/ethereum/maven/" }
}
}