libcvrapi/build.gradle

83 lines
1.8 KiB
Groovy
Raw Normal View History

2019-10-25 14:45:17 +00:00
apply plugin: "java-library"
2019-08-17 17:53:11 +00:00
apply plugin: "groovy"
2019-08-19 08:00:01 +00:00
apply plugin: 'maven'
2019-08-23 06:18:13 +00:00
apply plugin: 'jacoco'
2019-08-17 17:53:11 +00:00
apply plugin: 'maven-publish'
2019-08-23 06:18:13 +00:00
sourceCompatibility = 1.8
targetCompatibility = 1.8
2019-08-17 17:53:11 +00:00
repositories {
mavenCentral()
}
dependencies {
2019-08-19 08:49:53 +00:00
implementation("org.slf4j:slf4j-api:${slf4jVersion}")
2021-11-03 14:48:13 +00:00
api('com.google.code.gson:gson:2.8.8')
api('com.squareup.okhttp3:okhttp:4.9.1')
2019-08-19 08:49:53 +00:00
2019-08-23 06:18:13 +00:00
testImplementation("org.slf4j:slf4j-simple:${slf4jVersion}")
testImplementation('com.squareup.okhttp3:mockwebserver:4.9.1')
2019-08-23 06:18:13 +00:00
testCompile("org.codehaus.groovy:groovy-all:${groovyVersion}")
2019-08-17 17:53:11 +00:00
testCompile("org.spockframework:spock-core:${spockVersion}") {
exclude group: "org.codehaus.groovy"
}
testCompile('com.athaydes:spock-reports:2.0-groovy-3.0') {
2019-08-19 08:49:53 +00:00
transitive = false // this avoids affecting your version of Groovy/Spock
}
2019-08-17 17:53:11 +00:00
}
2019-08-19 18:58:01 +00:00
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
repositories {
mavenLocal()
}
}
2021-11-03 14:48:13 +00:00
test {
useJUnitPlatform()
}
2019-08-23 06:18:13 +00:00
jacoco {
toolVersion = "0.8.4"
}
jacocoTestReport {
group = "verification"
2019-10-25 14:45:17 +00:00
reports {
xml.enabled false
csv.enabled false
html.destination file("${buildDir}/reports/coverage")
}
afterEvaluate {
classDirectories.setFrom(files(classDirectories.files.collect {
fileTree(dir: it, exclude: 'biz/nellemann/libcvrapi/pojo/**')
}))
}
2019-08-23 06:18:13 +00:00
}
test.finalizedBy jacocoTestReport
jacocoTestCoverageVerification {
2019-10-25 14:45:17 +00:00
violationRules {
rule {
element = 'CLASS'
limit {
counter = 'LINE'
value = 'COVEREDRATIO'
minimum = 0.7
}
excludes = [
'biz.nellemann.libcvrapi.pojo.*'
]
}
}
2019-08-23 06:18:13 +00:00
}
check.dependsOn jacocoTestCoverageVerification