time/build.gradle

135 lines
3.7 KiB
Groovy
Raw Permalink Normal View History

2016-11-02 11:46:35 +01:00
plugins {
id "com.github.spotbugs" version "2.0.0"
id "io.codearte.nexus-staging" version "0.11.0"
2016-11-02 11:46:35 +01:00
}
apply plugin: 'java'
apply plugin: 'pmd'
apply plugin: 'checkstyle'
apply plugin: "com.github.spotbugs"
2016-11-02 11:46:35 +01:00
dependencies {
testCompile "junit:junit:${project.property('junit.version')}"
testCompile "org.quartz-scheduler:quartz:${project.property('quartz.version')}"
testCompile "com.google.caliper:caliper:${project.property('caliper.version')}"
2016-11-02 11:46:35 +01:00
}
compileJava {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
2016-11-02 11:46:35 +01:00
}
compileTestJava {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
2016-11-02 11:46:35 +01:00
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:all"
2016-11-02 11:46:35 +01:00
}
test {
testLogging {
showStandardStreams = true
2016-11-02 11:46:35 +01:00
exceptionFormat = 'full'
}
}
spotbugs {
toolVersion = '3.1.12'
sourceSets = [sourceSets.main]
ignoreFailures = true
effort = "max"
reportLevel = "high"
}
tasks.withType(Pmd) {
ignoreFailures = true
reports {
xml.enabled = true
html.enabled = true
}
}
tasks.withType(Checkstyle) {
ignoreFailures = true
reports {
xml.enabled = true
html.enabled = true
}
2016-11-02 11:46:35 +01:00
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier 'sources'
from sourceSets.main.allSource
}
2016-11-02 11:46:35 +01:00
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier 'javadoc'
}
2016-11-02 11:46:35 +01:00
artifacts {
archives sourcesJar, javadocJar
}
ext {
user = 'xbib'
projectName = 'time'
projectDescription = 'A bundle of Chronic, Prettytime, and org.joda.time.format optimized for Java 8 Time API'
scmUrl = 'https://github.com/xbib/time'
scmConnection = 'scm:git:git://github.com/xbib/time.git'
scmDeveloperConnection = 'scm:git:git://github.com/xbib/time.git'
}
task sonatypeUpload(type: Upload) {
configuration = configurations.archives
uploadDescriptor = true
repositories {
if (project.hasProperty('ossrhUsername')) {
mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
repository(url: uri(ossrhReleaseUrl)) {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
snapshotRepository(url: uri(ossrhSnapshotUrl)) {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
pom.project {
name projectName
description projectDescription
packaging 'jar'
inceptionYear '2016'
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'
}
}
}
}
}
2016-11-02 11:46:35 +01:00
}
}
nexusStaging {
packageGroup = "org.xbib"
}