net/build.gradle

167 lines
4.7 KiB
Groovy
Raw Normal View History

2017-07-24 16:02:50 +02:00
plugins {
2017-12-31 00:11:10 +01:00
id "org.sonarqube" version "2.6.1"
id "io.codearte.nexus-staging" version "0.11.0"
id "com.github.spotbugs" version "2.0.0"
id "org.xbib.gradle.plugin.asciidoctor" version "1.5.6.0.1"
2017-07-24 16:02:50 +02:00
}
2017-12-31 00:11:10 +01:00
subprojects {
2017-07-24 16:02:50 +02:00
2017-12-31 00:11:10 +01:00
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'checkstyle'
apply plugin: 'com.github.spotbugs'
2017-12-31 00:11:10 +01:00
apply plugin: 'pmd'
apply plugin: 'org.xbib.gradle.plugin.asciidoctor'
2017-07-24 16:02:50 +02:00
2017-12-31 00:11:10 +01:00
repositories {
mavenCentral()
}
2017-07-24 16:02:50 +02:00
2017-12-31 00:11:10 +01:00
configurations {
asciidoclet
}
2017-07-24 16:02:50 +02:00
2017-12-31 00:11:10 +01:00
dependencies {
testImplementation "org.junit.jupiter:junit-jupiter-api:${project.property('junit.version')}"
testImplementation "org.junit.jupiter:junit-jupiter-params:${project.property('junit.version')}"
testImplementation "org.hamcrest:hamcrest-library:${project.property('hamcrest.version')}"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${project.property('junit.version')}"
testImplementation "com.fasterxml.jackson.core:jackson-databind:${project.property('jackson.version')}"
2017-12-31 00:11:10 +01:00
asciidoclet "org.asciidoctor:asciidoclet:${project.property('asciidoclet.version')}"
}
2017-07-24 16:02:50 +02:00
2018-09-14 16:50:36 +02:00
compileJava {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
2018-09-14 16:50:36 +02:00
}
2018-09-14 16:50:36 +02:00
compileTestJava {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
2018-09-14 16:50:36 +02:00
}
2017-12-31 00:11:10 +01:00
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:all"
2017-07-24 16:02:50 +02:00
}
2017-12-31 00:11:10 +01:00
jar {
manifest {
attributes('Implementation-Version': project.version)
}
2017-07-24 16:02:50 +02:00
}
2017-12-31 00:11:10 +01:00
clean {
delete 'out'
}
2017-07-24 16:02:50 +02:00
2017-12-31 00:11:10 +01:00
test {
useJUnitPlatform()
2017-12-31 00:11:10 +01:00
systemProperty 'java.net.preferIPv4Stack', 'false'
systemProperty 'java.net.preferIPv6Addresses', 'true'
failFast = false
testLogging {
events 'STARTED', 'PASSED', 'FAILED', 'SKIPPED'
}
afterSuite { desc, result ->
if (!desc.parent) {
println "\nTest result: ${result.resultType}"
println "Test summary: ${result.testCount} tests, " +
"${result.successfulTestCount} succeeded, " +
"${result.failedTestCount} failed, " +
"${result.skippedTestCount} skipped"
}
}
2017-07-24 16:02:50 +02:00
}
2017-12-31 00:11:10 +01:00
asciidoctor {
attributes 'source-highlighter': 'coderay',
toc: 'left',
doctype: 'book',
icons: 'font',
encoding: 'utf-8',
sectlink: true,
sectanchors: true,
linkattrs: true,
imagesdir: 'img'
}
2019-04-16 23:58:09 +02:00
/*javadoc {
2017-12-31 00:11:10 +01:00
options.docletpath = configurations.asciidoclet.files.asType(List)
options.doclet = 'org.asciidoctor.Asciidoclet'
//options.overview = "src/docs/asciidoclet/overview.adoc"
2017-12-31 00:11:10 +01:00
options.addStringOption "-base-dir", "${projectDir}"
options.addStringOption "-attribute",
"name=${project.name},version=${project.version},title-link=https://github.com/xbib/${project.name}"
configure(options) {
noTimestamp = true
}
2019-04-16 23:58:09 +02:00
}*/
2017-12-31 00:11:10 +01:00
task sourcesJar(type: Jar, dependsOn: classes) {
classifier 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier 'javadoc'
}
artifacts {
archives sourcesJar, javadocJar
2017-07-24 16:02:50 +02:00
}
2017-12-31 00:11:10 +01:00
apply from: "${rootProject.projectDir}/gradle/publish.gradle"
tasks.withType(Checkstyle) {
ignoreFailures = true
reports {
xml.enabled = true
html.enabled = true
}
}
tasks.withType(Pmd) {
ignoreFailures = true
reports {
xml.enabled = true
html.enabled = true
}
}
checkstyle {
//configFile = rootProject.file('config/checkstyle/checkstyle.xml')
ignoreFailures = true
showViolations = true
}
sonarqube {
properties {
property "sonar.projectName", "${project.group} ${project.name}"
property "sonar.sourceEncoding", "UTF-8"
property "sonar.tests", "src/test/java"
property "sonar.scm.provider", "git"
property "sonar.junit.reportsPath", "build/test-results/test/"
}
}
spotbugs {
effort = "max"
reportLevel = "low"
//includeFilter = file("findbugs-exclude.xml")
}
tasks.withType(com.github.spotbugs.SpotBugsTask) {
ignoreFailures = true
reports {
xml.enabled = false
html.enabled = true
}
}
2017-12-31 00:11:10 +01:00
}
nexusStaging {
packageGroup = "org.xbib"
}