time/build.gradle

41 lines
1.4 KiB
Groovy
Raw Permalink Normal View History

2016-11-02 11:46:35 +01:00
plugins {
2023-05-25 15:29:57 +02:00
id 'maven-publish'
id 'signing'
2023-10-15 23:09:48 +02:00
id "io.github.gradle-nexus.publish-plugin" version "2.0.0-rc-1"
id "org.xbib.gradle.plugin.asciidoctor" version "3.0.0"
2016-11-02 11:46:35 +01:00
}
wrapper {
gradleVersion = libs.versions.gradle.get()
2024-04-25 22:26:03 +02:00
distributionType = Wrapper.DistributionType.BIN
2016-11-02 11:46:35 +01:00
}
ext {
2023-05-25 15:29:57 +02:00
user = 'joerg'
name = 'time'
description = 'A bundle of Chronic, Prettytime, and org.joda.time.format optimized for Java 8 Time API'
inceptionYear = '2016'
2023-05-25 15:29:57 +02:00
url = 'https://xbib.org/' + user + '/' + name
scmUrl = 'https://xbib.org/' + user + '/' + name
scmConnection = 'scm:git:git://xbib.org/' + user + '/' + name + '.git'
scmDeveloperConnection = 'scm:git:ssh://forgejo@xbib.org:' + user + '/' + name + '.git'
issueManagementSystem = 'Github'
issueManagementUrl = ext.scmUrl + '/issues'
licenseName = 'The Apache License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
2021-05-30 09:47:25 +02:00
apply from: rootProject.file('gradle/repositories/maven.gradle')
apply from: rootProject.file('gradle/compile/java.gradle')
apply from: rootProject.file('gradle/test/junit5.gradle')
2023-05-25 15:29:57 +02:00
apply from: rootProject.file('gradle/publish/maven.gradle')
apply from: rootProject.file('gradle/publish/forgejo.gradle')
apply from: rootProject.file('gradle/publish/sonatype.gradle')
dependencies {
2024-04-25 22:26:03 +02:00
testImplementation testLibs.quartz
testImplementation testLibs.caliper
testImplementation testLibs.guava
}