marc/build.gradle

119 lines
3.6 KiB
Groovy
Raw Normal View History

2018-02-15 11:56:38 +01:00
import java.time.ZonedDateTime
import java.time.format.DateTimeFormatter
2016-09-15 17:07:08 +02:00
plugins {
id "org.sonarqube" version "2.6.1"
id "io.codearte.nexus-staging" version "0.11.0"
2018-02-15 11:56:38 +01:00
id "org.xbib.gradle.plugin.asciidoctor" version "1.6.0.0"
2016-09-15 17:07:08 +02:00
}
2018-02-15 11:56:38 +01:00
printf "Date: %s\nHost: %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",
2018-02-15 11:56:38 +01:00
ZonedDateTime.now().format(DateTimeFormatter.ISO_DATE_TIME),
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-15 11:56:38 +01:00
gradle.gradleVersion, GroovySystem.getVersion(), JavaVersion.current()
2016-09-15 17:07:08 +02:00
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'signing'
apply plugin: "io.codearte.nexus-staging"
apply plugin: 'org.xbib.gradle.plugin.asciidoctor'
2017-03-01 23:05:19 +01:00
repositories {
mavenCentral()
}
2016-09-15 17:07:08 +02:00
configurations {
asciidoclet
2016-09-15 17:07:08 +02:00
wagon
}
dependencies {
testCompile "org.xbib:bibliographic-character-sets:${project.property('xbib-bibliographic-character-sets.version')}"
testCompile "org.xbib:content-core:${project.property('xbib-content.version')}"
testCompile "junit:junit:${project.property('junit.version')}"
testCompile "xalan:xalan:${project.property('xalan.version')}"
testCompile "org.xmlunit:xmlunit-matchers:${project.property('xmlunit-matchers.version')}"
testCompile "com.github.stefanbirkner:system-rules:${project.property('system-rules.version')}"
2018-02-15 11:56:38 +01:00
asciidoclet "org.xbib:asciidoclet:${project.property('asciidoclet.version')}"
wagon "org.apache.maven.wagon:wagon-ssh:${project.property('wagon.version')}"
2016-09-15 17:07:08 +02:00
}
2018-02-15 11:56:38 +01:00
sourceCompatibility = JavaVersion.VERSION_1_9
2016-09-15 17:07:08 +02:00
targetCompatibility = JavaVersion.VERSION_1_8
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
tasks.withType(JavaCompile) {
2018-02-15 11:56:38 +01:00
options.compilerArgs << "-Xlint:all" // << "-profile" << "compact2"
if (JavaVersion.current().java9Compatible) {
options.compilerArgs << '--release' << JavaVersion.toVersion(targetCompatibility).majorVersion
}
2016-09-15 17:07:08 +02:00
}
2016-09-15 17:07:08 +02:00
test {
// massive heap for for xmlunit DOM comparer
jvmArgs '-Xmx2048m'
2016-09-15 17:07:08 +02:00
testLogging {
showStandardStreams = true
exceptionFormat = 'full'
}
}
asciidoctor {
attributes toc: 'left',
doctype: 'book',
icons: 'font',
encoding: 'utf-8',
sectlink: true,
sectanchors: true,
linkattrs: true,
imagesdir: 'img',
'source-highlighter': 'coderay'
2016-09-15 17:07:08 +02:00
}
javadoc {
options.docletpath = configurations.asciidoclet.files.asType(List)
2018-02-15 11:56:38 +01:00
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/xbib/${project.name}"
configure(options) {
noTimestamp = true
}
2016-09-15 17:07:08 +02:00
}
clean {
delete 'out'
}
2016-09-15 17:07:08 +02:00
task sourcesJar(type: Jar, dependsOn: classes) {
classifier 'sources'
from sourceSets.main.allSource
}
2016-09-15 17:07:08 +02:00
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier 'javadoc'
}
2016-09-15 17:07:08 +02:00
artifacts {
archives sourcesJar, javadocJar
}
2016-09-15 17:07:08 +02:00
if (project.hasProperty('signing.keyId')) {
signing {
sign configurations.archives
}
}
apply from: 'gradle/ext.gradle'
apply from: 'gradle/publish.gradle'
2018-02-15 11:56:38 +01:00
apply from: 'gradle/sourcequality.gradle'