-
Notifications
You must be signed in to change notification settings - Fork 13
/
build.gradle
53 lines (41 loc) · 903 Bytes
/
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
subprojects {
buildscript {
repositories {
mavenCentral()
}
}
version = '1.3.3'
group 'org.walkmod'
apply plugin: 'java'
apply plugin: 'scala'
apply plugin: 'jacoco'
repositories {
mavenCentral()
}
javadoc {
source = sourceSets.main.allJava
classpath = configurations.compileClasspath
}
task sourceJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allJava
}
task packageJavadoc(type: Jar) {
from javadoc
classifier = 'javadoc'
}
apply plugin: 'maven-publish'
sourceCompatibility = 1.8
jacocoTestReport {
reports {
xml.enabled true
html.enabled false
}
}
check.dependsOn jacocoTestReport
}
allprojects {
tasks.withType(Test).configureEach {
forkEvery = 100
}
}