-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
80 lines (68 loc) · 1.55 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.rholder:gradle-one-jar:1.0.4'
}
}
subprojects {
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'gradle-one-jar'
apply plugin: 'signing'
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
testCompile 'junit:junit:4.12'
testCompile 'org.assertj:assertj-core:3.2.0'
}
task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
}
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts {
archives javadocJar, sourcesJar
}
}
project.gradle.taskGraph.whenReady { taskGraph ->
if ( taskGraph.allTasks.find { it.name == "cobertura" } != null) {
project.tasks.withType(Test).each { Test test ->
test.ignoreFailures=true
test.afterSuite { td, tr ->
if ( td.getParent() == null ) {
project.ext.testFailures=tr.getFailedTestCount()
}
}
}
project.tasks.getByName("cobertura") {
doLast {
if ( testFailures ) {
throw new Exception("There were ${testFailures} test failures")
}
}
}
}
}
project('ships-gui') {
apply plugin: 'application'
dependencies {
compile project(':ships-core')
}
}
project('ships-server'){
dependencies {
compile project(':ships-core')
}
}
project('ships-core'){
}
task wrapper(type: Wrapper) {
gradleVersion = '2.10'
}