55 lines
948 B
Groovy
55 lines
948 B
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
apply plugin: 'java'
|
|
apply plugin: 'eclipse'
|
|
apply plugin: 'idea'
|
|
apply plugin: 'jacoco'
|
|
//apply plugin: 'checkstyle'
|
|
//
|
|
//checkstyle {
|
|
// version = '7.8.1'
|
|
// config = 'checkstyle/checkstyle.xml' as File
|
|
//}
|
|
//
|
|
//checkstyleMain {
|
|
// source ='src/main/java'
|
|
//}
|
|
//
|
|
//checkstyleTest {
|
|
// source ='src/test/java'
|
|
//}
|
|
//
|
|
//tasks.withType(Checkstyle) {
|
|
// reports {
|
|
// xml.enabled false
|
|
// html.enabled true
|
|
// html.stylesheet resources.text.fromFile('config/xsl/checkstyle-custom.xsl')
|
|
// }
|
|
//}
|
|
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
}
|
|
|
|
jacoco {
|
|
toolVersion = "0.8.2"
|
|
reportsDir = file("$buildDir/customJacocoReportDir")
|
|
}
|
|
|
|
jacocoTestReport {
|
|
reports {
|
|
xml.enabled false
|
|
csv.enabled false
|
|
html.destination file("${buildDir}/jacocoHtml")
|
|
}
|
|
} |