205 lines
6.9 KiB
Groovy
205 lines
6.9 KiB
Groovy
plugins {
|
|
id "com.github.spotbugs" version "2.0.0"
|
|
id "org.sonarqube" version "2.6.1"
|
|
id "io.codearte.nexus-staging" version "0.11.0"
|
|
id "org.xbib.gradle.plugin.asciidoctor" version "1.5.6.0.1"
|
|
}
|
|
|
|
apply plugin: 'org.xbib.gradle.plugin.asciidoctor'
|
|
apply plugin: "io.codearte.nexus-staging"
|
|
|
|
subprojects {
|
|
apply plugin: 'java'
|
|
apply plugin: 'maven'
|
|
apply plugin: 'signing'
|
|
apply plugin: "com.github.spotbugs"
|
|
|
|
configurations {
|
|
asciidoclet
|
|
}
|
|
|
|
dependencies {
|
|
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')}"
|
|
asciidoclet "org.asciidoctor:asciidoclet:${project.property('asciidoclet.version')}"
|
|
}
|
|
|
|
compileJava {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
compileTestJava {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
tasks.withType(JavaCompile) {
|
|
options.compilerArgs << "-Xlint:all,-fallthrough"
|
|
if (!options.compilerArgs.contains("-processor")) {
|
|
options.compilerArgs << '-proc:none'
|
|
}
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes('Implementation-Version': project.version)
|
|
}
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
systemProperty 'java.util.logging.config.file', 'src/test/resources/logging.properties'
|
|
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"
|
|
}
|
|
}
|
|
}
|
|
|
|
clean {
|
|
delete 'out'
|
|
}
|
|
|
|
asciidoctor {
|
|
attributes toc: 'left',
|
|
doctype: 'book',
|
|
icons: 'font',
|
|
encoding: 'utf-8',
|
|
sectlink: true,
|
|
sectanchors: true,
|
|
linkattrs: true,
|
|
imagesdir: 'img',
|
|
'source-highlighter': 'coderay'
|
|
}
|
|
|
|
/*javadoc {
|
|
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
|
|
}
|
|
}*/
|
|
|
|
task javadocJar(type: Jar, dependsOn: classes) {
|
|
from javadoc
|
|
into "build/tmp"
|
|
archiveClassifier.set('javadoc')
|
|
}
|
|
|
|
task sourcesJar(type: Jar, dependsOn: classes) {
|
|
from sourceSets.main.allSource
|
|
into "build/tmp"
|
|
archiveClassifier.set('sources')
|
|
}
|
|
|
|
artifacts {
|
|
archives javadocJar, sourcesJar
|
|
}
|
|
|
|
ext {
|
|
user = 'jprante'
|
|
name = 'netty-http'
|
|
description = 'HTTP client and server for Netty'
|
|
scmUrl = 'https://github.com/' + user + '/' + name
|
|
scmConnection = 'scm:git:git://github.com/' + user + '/' + name + '.git'
|
|
scmDeveloperConnection = 'scm:git:git://github.com/' + user + '/' + name + '.git'
|
|
}
|
|
|
|
task sonaTypeUpload(type: Upload) {
|
|
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 '2012'
|
|
url scmUrl
|
|
organization {
|
|
name 'xbib'
|
|
url 'http://xbib.org'
|
|
}
|
|
developers {
|
|
developer {
|
|
id user
|
|
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'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
spotbugs {
|
|
toolVersion = '3.1.12'
|
|
sourceSets = [sourceSets.main]
|
|
ignoreFailures = true
|
|
effort = "max"
|
|
reportLevel = "high"
|
|
// includeFilter = file("config/findbugs/findbugs-include.xml")
|
|
// excludeFilter = file("config/findbugs/findbugs-excludes.xml")
|
|
}
|
|
|
|
// To generate an HTML report instead of XML
|
|
tasks.withType(com.github.spotbugs.SpotBugsTask) {
|
|
reports.xml.enabled = false
|
|
reports.html.enabled = 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/"
|
|
}
|
|
}
|
|
|
|
nexusStaging {
|
|
packageGroup = "org.xbib"
|
|
}
|