2018-02-28 12:23:52 +01:00
|
|
|
import java.time.ZonedDateTime
|
|
|
|
import java.time.format.DateTimeFormatter
|
2017-05-02 00:52:09 +02:00
|
|
|
|
|
|
|
plugins {
|
2018-03-08 15:57:17 +01:00
|
|
|
id "com.github.spotbugs" version "1.6.1"
|
2018-02-28 12:23:52 +01:00
|
|
|
id "org.sonarqube" version "2.6.1"
|
|
|
|
id "io.codearte.nexus-staging" version "0.11.0"
|
|
|
|
id "org.xbib.gradle.plugin.asciidoctor" version "1.6.0.0"
|
2017-05-02 00:52:09 +02:00
|
|
|
}
|
|
|
|
|
2018-02-28 12:23:52 +01:00
|
|
|
printf "Date: %s\nHost: %s\nOS: %s %s %s\nJVM: %s %s %s %s\nGradle: %s Groovy: %s Java: %s\n" +
|
2017-05-02 00:52:09 +02:00
|
|
|
"Build: group: ${project.group} name: ${project.name} version: ${project.version}\n",
|
2018-02-28 12:23:52 +01:00
|
|
|
ZonedDateTime.now().format(DateTimeFormatter.ISO_DATE_TIME),
|
2017-05-02 00:52:09 +02:00
|
|
|
InetAddress.getLocalHost(),
|
|
|
|
System.getProperty("os.name"),
|
|
|
|
System.getProperty("os.arch"),
|
|
|
|
System.getProperty("os.version"),
|
|
|
|
System.getProperty("java.version"),
|
|
|
|
System.getProperty("java.vm.version"),
|
|
|
|
System.getProperty("java.vm.vendor"),
|
|
|
|
System.getProperty("java.vm.name"),
|
2018-02-28 12:23:52 +01:00
|
|
|
gradle.gradleVersion, GroovySystem.getVersion(), JavaVersion.current()
|
2017-05-02 00:52:09 +02:00
|
|
|
|
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'maven'
|
|
|
|
apply plugin: 'signing'
|
2018-03-08 15:57:17 +01:00
|
|
|
apply plugin: "com.github.spotbugs"
|
2017-05-02 00:52:09 +02:00
|
|
|
apply plugin: "io.codearte.nexus-staging"
|
2018-02-28 12:23:52 +01:00
|
|
|
apply plugin: 'org.xbib.gradle.plugin.asciidoctor'
|
2017-05-02 00:52:09 +02:00
|
|
|
|
|
|
|
configurations {
|
|
|
|
alpnagent
|
|
|
|
asciidoclet
|
|
|
|
wagon
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-03-01 22:08:16 +01:00
|
|
|
compile "org.xbib:net-url:${project.property('xbib-net-url.version')}"
|
2017-05-02 00:52:09 +02:00
|
|
|
compile "io.netty:netty-codec-http2:${project.property('netty.version')}"
|
|
|
|
compile "io.netty:netty-handler-proxy:${project.property('netty.version')}"
|
2018-03-08 15:57:17 +01:00
|
|
|
compile "io.netty:netty-transport-native-epoll:${project.property('netty.version')}"
|
2018-03-01 22:08:16 +01:00
|
|
|
testCompile "io.netty:netty-tcnative-boringssl-static:${project.property('tcnative.version')}"
|
|
|
|
testCompile "org.conscrypt:conscrypt-openjdk-uber:${project.property('conscrypt.version')}"
|
2017-05-02 00:52:09 +02:00
|
|
|
testCompile "junit:junit:${project.property('junit.version')}"
|
2018-02-28 12:23:52 +01:00
|
|
|
testCompile "com.fasterxml.jackson.core:jackson-databind:${project.property('jackson.version')}"
|
|
|
|
alpnagent "org.mortbay.jetty.alpn:jetty-alpn-agent:${project.property('alpnagent.version')}"
|
|
|
|
asciidoclet "org.xbib:asciidoclet:${project.property('asciidoclet.version')}"
|
2017-05-02 00:52:09 +02:00
|
|
|
wagon "org.apache.maven.wagon:wagon-ssh:${project.property('wagon.version')}"
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
|
|
|
|
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
|
|
|
|
tasks.withType(JavaCompile) {
|
2018-02-28 12:23:52 +01:00
|
|
|
options.compilerArgs << "-Xlint:all,-serial"
|
2017-05-02 00:52:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
jar {
|
|
|
|
manifest {
|
|
|
|
attributes('Implementation-Version': project.version)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
2018-02-28 12:23:52 +01:00
|
|
|
if (JavaVersion.current() == JavaVersion.VERSION_1_8) {
|
|
|
|
jvmArgs "-javaagent:" + configurations.alpnagent.asPath
|
|
|
|
}
|
2017-05-02 00:52:09 +02:00
|
|
|
testLogging {
|
2018-03-09 00:37:08 +01:00
|
|
|
showStandardStreams = false
|
2017-05-02 00:52:09 +02:00
|
|
|
exceptionFormat = 'full'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-04 23:14:26 +01:00
|
|
|
clean {
|
|
|
|
delete 'out'
|
|
|
|
}
|
|
|
|
|
2017-05-02 00:52:09 +02:00
|
|
|
asciidoctor {
|
2018-02-28 12:23:52 +01:00
|
|
|
attributes toc: 'left',
|
|
|
|
doctype: 'book',
|
|
|
|
icons: 'font',
|
|
|
|
encoding: 'utf-8',
|
|
|
|
sectlink: true,
|
|
|
|
sectanchors: true,
|
|
|
|
linkattrs: true,
|
|
|
|
imagesdir: 'img',
|
|
|
|
'source-highlighter': 'coderay'
|
2017-05-02 00:52:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
javadoc {
|
|
|
|
options.docletpath = configurations.asciidoclet.files.asType(List)
|
2018-02-28 12:23:52 +01:00
|
|
|
options.doclet = "org.xbib.asciidoclet.Asciidoclet"
|
2017-05-02 00:52:09 +02:00
|
|
|
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"
|
|
|
|
classifier 'javadoc'
|
|
|
|
}
|
|
|
|
|
|
|
|
task sourcesJar(type: Jar, dependsOn: classes) {
|
|
|
|
from sourceSets.main.allSource
|
|
|
|
into "build/tmp"
|
|
|
|
classifier 'sources'
|
|
|
|
}
|
|
|
|
|
|
|
|
artifacts {
|
|
|
|
archives javadocJar, sourcesJar
|
|
|
|
}
|
|
|
|
|
|
|
|
if (project.hasProperty('signing.keyId')) {
|
|
|
|
signing {
|
|
|
|
sign configurations.archives
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-08 15:57:17 +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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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 {
|
|
|
|
user = 'jprante'
|
|
|
|
name = 'netty-http-client'
|
|
|
|
description = 'A java client for Elasticsearch'
|
|
|
|
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 xbibUpload(type: Upload) {
|
|
|
|
group = 'publish'
|
|
|
|
configuration = configurations.archives
|
|
|
|
uploadDescriptor = true
|
|
|
|
repositories {
|
|
|
|
if (project.hasProperty("xbibUsername")) {
|
|
|
|
mavenDeployer {
|
|
|
|
configuration = configurations.wagon
|
|
|
|
repository(url: 'sftp://xbib.org/repository') {
|
|
|
|
authentication(userName: xbibUsername, privateKey: xbibPrivateKey)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nexusStaging {
|
|
|
|
packageGroup = "org.xbib"
|
|
|
|
}
|