net/build.gradle

132 lines
3.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"
2017-07-24 16:02:50 +02:00
id "org.xbib.gradle.plugin.asciidoctor" version "1.5.4.1.0"
2017-12-31 00:11:10 +01:00
id "io.codearte.nexus-staging" version "0.11.0"
2017-07-24 16:02:50 +02:00
}
printf "Host: %s\nOS: %s %s %s\nJVM: %s %s %s %s\nGroovy: %s\nGradle: %s\n" +
"Build: group: ${project.group} name: ${project.name} version: ${project.version}\n",
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"),
GroovySystem.getVersion(),
gradle.gradleVersion
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: 'signing'
apply plugin: 'findbugs'
apply plugin: 'pmd'
apply plugin: 'checkstyle'
apply plugin: "jacoco"
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
wagon
}
2017-07-24 16:02:50 +02:00
2017-12-31 00:11:10 +01:00
dependencies {
testCompile "junit:junit:${project.property('junit.version')}"
testCompile "com.fasterxml.jackson.core:jackson-databind:${project.property('jackson.version')}"
asciidoclet "org.asciidoctor:asciidoclet:${project.property('asciidoclet.version')}"
wagon "org.apache.maven.wagon:wagon-ssh:${project.property('wagon.version')}"
}
2017-07-24 16:02:50 +02:00
2018-07-09 22:17:17 +02:00
checkstyle {
configFile = rootProject.file('config/checkstyle/checkstyle.xml')
ignoreFailures = true
showViolations = true
}
2017-12-31 00:11:10 +01:00
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
2017-07-24 16:02:50 +02:00
2017-12-31 00:11:10 +01:00
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:all,-serial" << "-profile" << "compact1"
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 {
testLogging {
showStandardStreams = false
exceptionFormat = 'full'
}
systemProperty 'java.net.preferIPv4Stack', 'false'
systemProperty 'java.net.preferIPv6Addresses', 'true'
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'
}
javadoc {
options.docletpath = configurations.asciidoclet.files.asType(List)
options.doclet = 'org.asciidoctor.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/xbib/${project.name}"
configure(options) {
noTimestamp = true
}
}
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
if (project.hasProperty('signing.keyId')) {
signing {
sign configurations.archives
}
}
2017-07-24 16:02:50 +02:00
2017-12-31 00:11:10 +01:00
apply from: "${rootProject.projectDir}/gradle/ext.gradle"
apply from: "${rootProject.projectDir}/gradle/publish.gradle"
apply from: "${rootProject.projectDir}/gradle/sonarqube.gradle"
}
nexusStaging {
packageGroup = "org.xbib"
}