bibliographic-character-sets/build.gradle

34 lines
1.2 KiB
Groovy
Raw Normal View History

plugins {
2023-05-22 11:02:37 +02:00
id 'maven-publish'
id 'signing'
2024-12-27 10:52:57 +01:00
id "build-dashboard"
2023-10-21 22:21:31 +02:00
id "io.github.gradle-nexus.publish-plugin" version "2.0.0-rc-1"
}
2016-08-18 20:39:56 +02:00
wrapper {
2023-05-22 11:02:37 +02:00
gradleVersion = libs.versions.gradle.get()
2024-07-10 18:54:24 +02:00
distributionType = Wrapper.DistributionType.BIN
2016-08-18 20:39:56 +02:00
}
ext {
user = 'xbib'
name = 'bibliographic-character-sets'
description = 'Bibliographic character sets for Java'
inceptionYear = '2016'
2023-05-23 19:00:12 +02:00
url = 'https://xbib.org/' + user + '/' + name
scmUrl = 'https://xbib.org/' + user + '/' + name
scmConnection = 'scm:git::ssh://xbib.org/' + user + '/' + name + '.git'
scmDeveloperConnection = 'scm:git:ssh://forgejo@xbib.org:' + user + '/' + name + '.git'
issueManagementSystem = 'Forgejo'
issueManagementUrl = ext.scmUrl + '/issues'
licenseName = 'Affero GNU Public License Version 3'
licenseUrl = 'http://www.gnu.org/licenses/agpl-3.0.html'
2016-08-18 20:39:56 +02:00
}
apply plugin: 'java-library'
2021-05-29 23:14:53 +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-22 11:02:37 +02:00
apply from: rootProject.file('gradle/publish/maven.gradle')
2024-12-27 10:52:57 +01:00
apply from: rootProject.file('gradle/publish/maven-central/sonatype.gradle')