-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
40 lines (33 loc) · 814 Bytes
/
build.gradle
File metadata and controls
40 lines (33 loc) · 814 Bytes
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
plugins {
id 'java-library'
id 'jacoco'
id 'com.github.kt3k.coveralls' version '2.8.2'
}
group 'com.github.ryctabo'
version '1.0.0-SNAPSHOT'
repositories {
jcenter()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
testImplementation 'junit:junit:4.12'
testImplementation 'org.easymock:easymock:3.4'
testImplementation 'org.powermock:powermock-module-junit4:1.7.0'
testImplementation 'org.powermock:powermock-api-easymock:1.7.0'
}
jacocoTestReport {
reports {
xml.enabled = true
html.enabled = true
}
}
coveralls {
jacocoReportPath 'build/reports/jacoco/test/jacocoTestReport.xml'
}
jar {
manifest {
attributes('Implementation-Title': project.name,
'Implementation-Version': project.version)
}
}