libcvrapi/build.gradle

106 lines
2.2 KiB
Groovy
Raw Normal View History

2019-08-17 17:53:11 +00:00
buildscript {
repositories {
jcenter()
}
dependencies {
2019-08-19 08:00:01 +00:00
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
2019-08-23 06:18:13 +00:00
//classpath 'com.bmuschko:gradle-clover-plugin:2.2.3'
2019-08-17 17:53:11 +00:00
}
}
apply plugin: "idea"
apply plugin: "java"
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'
apply plugin: 'com.jfrog.bintray'
2019-08-23 06:18:13 +00:00
//apply from: "${project.projectDir}/gradle/clover.gradle"
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}")
2019-08-17 17:53:11 +00:00
implementation('com.google.code.gson:gson:2.8.5')
implementation("com.squareup.okhttp3:okhttp:4.1.0")
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.1.0')
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"
}
2019-08-19 08:49:53 +00:00
testCompile( 'com.athaydes:spock-reports:1.6.2' ) {
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()
}
}
2019-08-17 17:53:11 +00:00
bintray {
user = System.getenv('BINTRAY_USER')
key = System.getenv('BINTRAY_KEY')
configurations = ['archives']
pkg {
repo = "libs"
name = id
websiteUrl = siteUrl
vcsUrl = gitUrl
licenses = licenses
publish = true
}
}
2019-08-23 06:18:13 +00:00
jacoco {
toolVersion = "0.8.4"
}
jacocoTestReport {
group = "verification"
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/**')
}))
}
}
test.finalizedBy jacocoTestReport
jacocoTestCoverageVerification {
violationRules {
rule {
element = 'CLASS'
limit {
counter = 'LINE'
value = 'COVEREDRATIO'
2019-08-23 11:11:33 +00:00
minimum = 0.7
2019-08-23 06:18:13 +00:00
}
excludes = [
'biz.nellemann.libcvrapi.pojo.*'
]
}
}
}
check.dependsOn jacocoTestCoverageVerification