content/build.gradle

101 lines
2.5 KiB
Groovy
Raw Permalink Normal View History

2016-10-03 14:25:26 +02:00
plugins {
2018-01-27 20:37:51 +01:00
id "org.sonarqube" version "2.6.1"
id "io.codearte.nexus-staging" version "0.11.0"
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-02-21 09:19:13 +01:00
printf "Host: %s\nOS: %s %s %s\nJVM: %s %s %s %s\nGradle: %s Groovy: %s Java: %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"),
2018-02-08 11:06:27 +01:00
gradle.gradleVersion,
GroovySystem.getVersion(),
2018-02-08 11:06:27 +01:00
JavaVersion.current()
2016-10-03 14:25:26 +02:00
apply plugin: 'build-dashboard'
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: 'signing'
apply plugin: 'findbugs'
apply plugin: 'pmd'
apply plugin: 'checkstyle'
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 {
asciidoclet
2016-10-03 14:25:26 +02:00
wagon
}
dependencies {
2018-02-06 23:31:56 +01:00
testCompile "junit:junit:${project.property('junit.version')}"
2018-07-10 14:41:20 +02:00
asciidoclet "org.asciidoctor:asciidoclet:${project.property('asciidoclet.version')}"
2018-02-06 23:31:56 +01:00
wagon "org.apache.maven.wagon:wagon-ssh:${project.property('wagon.version')}"
2016-10-03 14:25:26 +02:00
}
2018-07-09 22:47:26 +02:00
sourceCompatibility = JavaVersion.VERSION_1_8
2016-10-03 14:25:26 +02:00
targetCompatibility = JavaVersion.VERSION_1_8
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
tasks.withType(JavaCompile) {
2018-07-10 14:41:20 +02:00
options.compilerArgs << "-Xlint:all" << "-profile" << "compact1"
2016-10-03 14:25:26 +02:00
}
2016-10-29 20:00:22 +02:00
jar {
manifest {
attributes('Implementation-Version': project.version)
}
}
2016-10-03 14:25:26 +02:00
test {
testLogging {
showStandardStreams = false
exceptionFormat = 'full'
}
}
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
2016-10-03 14:25:26 +02:00
if (project.hasProperty('signing.keyId')) {
signing {
sign configurations.archives
}
}
apply from: "${rootProject.projectDir}/gradle/publish.gradle"
2018-07-10 14:41:20 +02:00
apply from: "${rootProject.projectDir}/gradle/qa.gradle"
2016-10-03 14:25:26 +02:00
}
2018-07-10 14:41:20 +02:00
nexusStaging {
packageGroup = "org.xbib"
}