95 lines
2.6 KiB
Groovy
95 lines
2.6 KiB
Groovy
plugins {
|
|
id "com.github.spotbugs" version "1.6.9"
|
|
id "org.sonarqube" version '2.6.1'
|
|
id "io.codearte.nexus-staging" version "0.11.0"
|
|
}
|
|
|
|
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"),
|
|
gradle.gradleVersion,
|
|
GroovySystem.getVersion(),
|
|
JavaVersion.current()
|
|
|
|
subprojects {
|
|
apply plugin: 'java'
|
|
apply plugin: 'maven'
|
|
apply plugin: 'signing'
|
|
apply plugin: 'checkstyle'
|
|
apply plugin: 'pmd'
|
|
apply plugin: "com.github.spotbugs"
|
|
|
|
|
|
configurations {
|
|
wagon
|
|
}
|
|
|
|
dependencies {
|
|
testCompile "junit:junit:${project.property('junit.version')}"
|
|
wagon "org.apache.maven.wagon:wagon-ssh:${project.property('wagon.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"
|
|
}
|
|
|
|
clean {
|
|
delete 'out'
|
|
}
|
|
|
|
test {
|
|
systemProperty 'java.util.logging.config.file', project.file('src/test/resources/logging.properties')
|
|
testLogging {
|
|
showStandardStreams = true
|
|
exceptionFormat = 'full'
|
|
}
|
|
}
|
|
|
|
task sourcesJar(type: Jar, dependsOn: classes) {
|
|
classifier 'sources'
|
|
from sourceSets.main.allSource
|
|
}
|
|
|
|
task javadocJar(type: Jar, dependsOn: javadoc) {
|
|
classifier 'javadoc'
|
|
}
|
|
|
|
artifacts {
|
|
archives sourcesJar, javadocJar
|
|
}
|
|
|
|
if (project.hasProperty('signing.keyId')) {
|
|
signing {
|
|
sign configurations.archives
|
|
}
|
|
}
|
|
ext {
|
|
user = 'xbib'
|
|
projectName = 'z3950'
|
|
projectDescription = 'Z39.50 for Java'
|
|
scmUrl = 'https://github.com/xbib/z3950'
|
|
scmConnection = 'scm:git:git://github.com/xbib/z3950.git'
|
|
scmDeveloperConnection = 'scm:git:git://github.com/xbib/z3950.git'
|
|
}
|
|
|
|
apply from: "${rootProject.projectDir}/gradle/publish.gradle"
|
|
apply from: "${rootProject.projectDir}/gradle/sonarqube.gradle"
|
|
|
|
}
|