2016-11-01 17:28:05 +01:00
|
|
|
|
|
|
|
plugins {
|
2020-04-01 22:43:19 +02:00
|
|
|
id "org.sonarqube" version "2.8"
|
|
|
|
id "io.codearte.nexus-staging" version "0.21.0"
|
|
|
|
id "com.github.spotbugs" version "2.0.1"
|
2019-02-10 20:39:07 +01:00
|
|
|
id "org.xbib.gradle.plugin.asciidoctor" version "1.6.0.1"
|
2016-11-01 17:28:05 +01:00
|
|
|
}
|
|
|
|
|
2019-02-22 11:15:22 +01:00
|
|
|
if (JavaVersion.current() < JavaVersion.VERSION_11) {
|
2020-05-10 17:40:58 +02:00
|
|
|
throw new GradleException("This build must be run with Java/OpenJDK 11+")
|
2019-02-10 20:39:07 +01:00
|
|
|
}
|
2018-05-04 16:02:16 +02:00
|
|
|
|
|
|
|
subprojects {
|
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'maven'
|
2019-02-22 11:15:22 +01:00
|
|
|
apply plugin: 'com.github.spotbugs'
|
|
|
|
apply plugin: 'pmd'
|
|
|
|
apply plugin: 'checkstyle'
|
|
|
|
apply plugin: 'org.xbib.gradle.plugin.asciidoctor'
|
2018-05-04 16:02:16 +02:00
|
|
|
|
|
|
|
configurations {
|
|
|
|
asciidoclet
|
2016-11-01 17:28:05 +01:00
|
|
|
}
|
|
|
|
|
2018-05-04 16:02:16 +02:00
|
|
|
dependencies {
|
2019-05-03 22:50:13 +02:00
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api:${project.property('junit.version')}"
|
|
|
|
testImplementation "org.apache.logging.log4j:log4j-core:${project.property('log4j.version')}"
|
|
|
|
testImplementation "org.apache.logging.log4j:log4j-jul:${project.property('log4j.version')}"
|
|
|
|
testImplementation "org.apache.logging.log4j:log4j-slf4j-impl:${project.property('log4j.version')}"
|
2019-05-08 11:31:06 +02:00
|
|
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${project.property('junit.version')}"
|
2018-05-04 16:02:16 +02:00
|
|
|
asciidoclet "org.xbib:asciidoclet:${project.property('asciidoclet.version')}"
|
|
|
|
}
|
2016-11-01 17:28:05 +01:00
|
|
|
|
2019-02-10 20:39:07 +01:00
|
|
|
compileJava {
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
|
|
}
|
|
|
|
compileTestJava {
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
|
|
targetCompatibility = JavaVersion.VERSION_11
|
2018-05-04 16:02:16 +02:00
|
|
|
}
|
2016-11-01 17:28:05 +01:00
|
|
|
|
2019-02-22 11:15:22 +01:00
|
|
|
tasks.withType(JavaCompile) {
|
|
|
|
options.compilerArgs << "-Xlint:all"
|
|
|
|
if (!options.compilerArgs.contains("-processor")) {
|
|
|
|
options.compilerArgs << '-proc:none'
|
|
|
|
}
|
2016-11-19 16:43:57 +01:00
|
|
|
}
|
2016-11-01 17:28:05 +01:00
|
|
|
|
2019-02-22 11:15:22 +01:00
|
|
|
test {
|
2019-05-03 22:50:13 +02:00
|
|
|
enabled = true
|
|
|
|
useJUnitPlatform()
|
2020-05-10 17:40:58 +02:00
|
|
|
// for Lucene to access jdk.internal.ref and jdk.internal.misc in Java 11+
|
|
|
|
jvmArgs = [
|
|
|
|
'--add-exports=java.base/jdk.internal.ref=ALL-UNNAMED',
|
|
|
|
'--add-exports=java.base/jdk.internal.misc=ALL-UNNAMED',
|
|
|
|
'--add-opens=java.base/java.nio=ALL-UNNAMED'
|
|
|
|
]
|
2019-05-03 22:50:13 +02:00
|
|
|
systemProperty 'java.util.logging.manager', 'org.apache.logging.log4j.jul.LogManager'
|
2019-02-22 11:15:22 +01:00
|
|
|
systemProperty 'jna.debug_load', 'true'
|
2020-05-10 17:40:58 +02:00
|
|
|
systemProperty 'path.home', "${project.buildDir}/"
|
2020-04-01 22:43:19 +02:00
|
|
|
failFast = true
|
2019-02-22 11:15:22 +01:00
|
|
|
testLogging {
|
2019-05-03 22:50:13 +02:00
|
|
|
events '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"
|
|
|
|
}
|
2019-02-22 11:15:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
clean {
|
|
|
|
delete "out"
|
|
|
|
}
|
|
|
|
|
2019-02-15 11:10:15 +01:00
|
|
|
/*javadoc {
|
2018-05-04 16:02:16 +02:00
|
|
|
options.docletpath = configurations.asciidoclet.files.asType(List)
|
|
|
|
options.doclet = 'org.xbib.asciidoclet.Asciidoclet'
|
|
|
|
options.overview = "src/docs/asciidoclet/overview.adoc"
|
|
|
|
options.addStringOption "-base-dir", "${projectDir}"
|
|
|
|
options.addStringOption "-attribute",
|
|
|
|
"name=${project.name},version=${project.version},title-link=https://github.com/jprante/${project.name}"
|
|
|
|
configure(options) {
|
|
|
|
noTimestamp = true
|
|
|
|
}
|
2019-02-15 11:10:15 +01:00
|
|
|
}*/
|
2016-11-01 17:28:05 +01:00
|
|
|
|
2019-02-22 11:15:22 +01:00
|
|
|
task javadocJar(type: Jar, dependsOn: javadoc) {
|
2019-05-03 22:50:13 +02:00
|
|
|
archiveClassifier.set('javadoc')
|
2019-02-22 11:15:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
task sourcesJar(type: Jar, dependsOn: classes) {
|
|
|
|
from sourceSets.main.allSource
|
2019-05-03 22:50:13 +02:00
|
|
|
archiveClassifier.set('sources')
|
2019-02-22 11:15:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
artifacts {
|
|
|
|
archives javadocJar, sourcesJar
|
|
|
|
}
|
2019-05-03 22:50:13 +02:00
|
|
|
|
2019-02-22 11:15:22 +01:00
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.withType(Pmd) {
|
|
|
|
ignoreFailures = true
|
|
|
|
reports {
|
|
|
|
xml.enabled = true
|
|
|
|
html.enabled = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tasks.withType(Checkstyle) {
|
|
|
|
ignoreFailures = true
|
|
|
|
reports {
|
|
|
|
xml.enabled = true
|
|
|
|
html.enabled = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pmd {
|
|
|
|
toolVersion = '6.11.0'
|
|
|
|
ruleSets = ['category/java/bestpractices.xml']
|
|
|
|
}
|
|
|
|
|
|
|
|
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/"
|
|
|
|
}
|
|
|
|
}
|
2020-04-01 22:43:19 +02:00
|
|
|
ext {
|
|
|
|
description = 'Extensions for Elasticsearch clients (node and transport)'
|
|
|
|
scmUrl = 'https://github.com/jprante/elx'
|
|
|
|
scmConnection = 'scm:git:git://github.com/jprante/elx.git'
|
|
|
|
scmDeveloperConnection = 'scm:git:git://github.com/jprante/elx.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: 'https://oss.sonatype.org/service/local/staging/deploy/maven2') {
|
|
|
|
authentication(userName: ossrhUsername, password: ossrhPassword)
|
|
|
|
}
|
|
|
|
snapshotRepository(url: 'https://oss.sonatype.org/content/repositories/snapshots') {
|
|
|
|
authentication(userName: ossrhUsername, password: ossrhPassword)
|
|
|
|
}
|
|
|
|
pom.project {
|
|
|
|
groupId project.group
|
|
|
|
artifactId project.name
|
|
|
|
version project.version
|
|
|
|
name project.name
|
|
|
|
description description
|
|
|
|
packaging 'jar'
|
|
|
|
inceptionYear '2019'
|
|
|
|
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'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nexusStaging {
|
|
|
|
packageGroup = "org.xbib"
|
|
|
|
}
|
2016-11-01 17:28:05 +01:00
|
|
|
}
|