2017-08-14 23:00:13 +02:00
|
|
|
|
2016-10-03 14:25:26 +02:00
|
|
|
plugins {
|
2019-11-06 21:40:15 +01:00
|
|
|
id "org.sonarqube" version "2.8"
|
|
|
|
id "io.codearte.nexus-staging" version "0.21.1"
|
|
|
|
id "com.github.spotbugs" version "2.0.1"
|
2018-07-09 22:47:26 +02:00
|
|
|
id "org.xbib.gradle.plugin.asciidoctor" version "1.5.6.0.1"
|
2016-10-03 14:25:26 +02:00
|
|
|
}
|
|
|
|
|
2018-07-10 14:41:20 +02:00
|
|
|
subprojects {
|
2016-10-29 20:00:22 +02:00
|
|
|
|
2016-10-03 14:25:26 +02:00
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'maven'
|
|
|
|
apply plugin: 'pmd'
|
|
|
|
apply plugin: 'checkstyle'
|
2019-08-08 15:31:56 +02:00
|
|
|
apply plugin: 'com.github.spotbugs'
|
2017-08-14 23:00:13 +02:00
|
|
|
apply plugin: 'org.xbib.gradle.plugin.asciidoctor'
|
2016-10-03 14:25:26 +02:00
|
|
|
|
2016-11-02 22:14:50 +01:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
2016-10-03 14:25:26 +02:00
|
|
|
configurations {
|
2017-08-14 23:00:13 +02:00
|
|
|
asciidoclet
|
2016-10-03 14:25:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2019-11-06 21:40:15 +01:00
|
|
|
testCompile "org.junit.jupiter:junit-jupiter-api:${project.property('junit.version')}"
|
|
|
|
testCompile "org.junit.jupiter:junit-jupiter-params:${project.property('junit.version')}"
|
|
|
|
testCompile "org.junit.jupiter:junit-jupiter-engine:${project.property('junit.version')}"
|
|
|
|
testCompile "org.junit.vintage:junit-vintage-engine:${project.property('junit.version')}"
|
|
|
|
testCompile "junit:junit:${project.property('junit4.version')}"
|
2018-07-10 14:41:20 +02:00
|
|
|
asciidoclet "org.asciidoctor:asciidoclet:${project.property('asciidoclet.version')}"
|
2016-10-03 14:25:26 +02:00
|
|
|
}
|
|
|
|
|
2019-08-08 15:31:56 +02:00
|
|
|
compileJava {
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
|
|
}
|
2016-10-03 14:25:26 +02:00
|
|
|
|
|
|
|
tasks.withType(JavaCompile) {
|
2019-08-08 15:31:56 +02:00
|
|
|
options.compilerArgs << "-Xlint:all"
|
2016-10-03 14:25:26 +02:00
|
|
|
}
|
2016-10-29 20:00:22 +02:00
|
|
|
|
2017-08-14 23:00:13 +02:00
|
|
|
jar {
|
|
|
|
manifest {
|
|
|
|
attributes('Implementation-Version': project.version)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-03 14:25:26 +02:00
|
|
|
test {
|
2019-11-06 21:40:15 +01:00
|
|
|
useJUnitPlatform()
|
|
|
|
failFast = false
|
2016-10-03 14:25:26 +02:00
|
|
|
testLogging {
|
2019-11-06 21:40:15 +01:00
|
|
|
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"
|
|
|
|
}
|
2016-10-03 14:25:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-14 23:00:13 +02:00
|
|
|
clean {
|
|
|
|
delete 'out'
|
|
|
|
}
|
|
|
|
|
2016-10-03 14:25:26 +02:00
|
|
|
task sourcesJar(type: Jar, dependsOn: classes) {
|
|
|
|
classifier 'sources'
|
|
|
|
from sourceSets.main.allSource
|
|
|
|
}
|
2018-02-06 23:31:56 +01:00
|
|
|
|
2016-10-03 14:25:26 +02:00
|
|
|
task javadocJar(type: Jar, dependsOn: javadoc) {
|
|
|
|
classifier 'javadoc'
|
|
|
|
}
|
2018-02-06 23:31:56 +01:00
|
|
|
|
2016-10-03 14:25:26 +02:00
|
|
|
artifacts {
|
|
|
|
archives sourcesJar, javadocJar
|
|
|
|
}
|
2018-02-06 23:31:56 +01:00
|
|
|
|
2019-08-08 15:31:56 +02:00
|
|
|
tasks.withType(Checkstyle) {
|
|
|
|
ignoreFailures = true
|
|
|
|
reports {
|
|
|
|
xml.enabled = true
|
|
|
|
html.enabled = true
|
2016-10-03 14:25:26 +02:00
|
|
|
}
|
|
|
|
}
|
2019-08-08 15:31:56 +02:00
|
|
|
spotbugs {
|
|
|
|
effort = "max"
|
|
|
|
reportLevel = "low"
|
|
|
|
//includeFilter = file("findbugs-exclude.xml")
|
|
|
|
}
|
2016-10-03 14:25:26 +02:00
|
|
|
|
2019-08-08 15:31:56 +02:00
|
|
|
tasks.withType(com.github.spotbugs.SpotBugsTask) {
|
|
|
|
ignoreFailures = true
|
|
|
|
reports {
|
|
|
|
xml.enabled = false
|
|
|
|
html.enabled = true
|
|
|
|
}
|
|
|
|
}
|
2016-10-03 14:25:26 +02:00
|
|
|
|
2019-08-08 15:31:56 +02:00
|
|
|
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/"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ext {
|
|
|
|
projectDescription = 'Content processing library for Java'
|
|
|
|
scmUrl = 'https://github.com/xbib/content'
|
|
|
|
scmConnection = 'scm:git:git://github.com/xbib/content.git'
|
|
|
|
scmDeveloperConnection = 'scm:git:git://github.com/xbib/content.git'
|
|
|
|
}
|
|
|
|
|
|
|
|
task sonatypeUpload(type: Upload, dependsOn: build) {
|
|
|
|
group = 'publish'
|
|
|
|
configuration = configurations.archives
|
|
|
|
uploadDescriptor = true
|
|
|
|
repositories {
|
|
|
|
if (project.hasProperty('ossrhUsername')) {
|
|
|
|
mavenDeployer {
|
|
|
|
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
|
|
|
|
repository(url: uri(ossrhReleaseUrl)) {
|
|
|
|
authentication(userName: ossrhUsername, password: ossrhPassword)
|
|
|
|
}
|
|
|
|
snapshotRepository(url: uri(ossrhSnapshotUrl)) {
|
|
|
|
authentication(userName: ossrhUsername, password: ossrhPassword)
|
|
|
|
}
|
|
|
|
pom.project {
|
|
|
|
groupId project.group
|
|
|
|
artifactId project.name
|
|
|
|
version project.version
|
|
|
|
name project.name
|
|
|
|
description projectDescription
|
|
|
|
packaging 'jar'
|
|
|
|
inceptionYear '2016'
|
|
|
|
url scmUrl
|
|
|
|
organization {
|
|
|
|
name 'xbib'
|
|
|
|
url 'http://xbib.org'
|
|
|
|
}
|
|
|
|
developers {
|
|
|
|
developer {
|
|
|
|
id 'xbib'
|
|
|
|
name 'Jörg Prante'
|
|
|
|
email 'joergprante@gmail.com'
|
|
|
|
url 'https://github.com/jprante'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
scm {
|
|
|
|
url scmUrl
|
|
|
|
connection scmConnection
|
|
|
|
developerConnection scmDeveloperConnection
|
|
|
|
}
|
|
|
|
licenses {
|
|
|
|
license {
|
|
|
|
name 'The Apache License, Version 2.0'
|
|
|
|
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-22 14:56:38 +01:00
|
|
|
}
|
2019-08-08 15:31:56 +02:00
|
|
|
|
2019-11-22 14:56:38 +01:00
|
|
|
nexusStaging {
|
|
|
|
packageGroup = "org.xbib"
|
|
|
|
//stagingProfileId = "org.xbib"
|
2018-07-10 14:41:20 +02:00
|
|
|
}
|