33 lines
1.2 KiB
Groovy
33 lines
1.2 KiB
Groovy
plugins {
|
|
id 'maven-publish'
|
|
id 'signing'
|
|
id "build-dashboard"
|
|
id "io.github.gradle-nexus.publish-plugin" version "2.0.0-rc-1"
|
|
}
|
|
|
|
wrapper {
|
|
gradleVersion = libs.versions.gradle.get()
|
|
distributionType = Wrapper.DistributionType.BIN
|
|
}
|
|
|
|
ext {
|
|
user = 'xbib'
|
|
name = 'bibliographic-character-sets'
|
|
description = 'Bibliographic character sets for Java'
|
|
inceptionYear = '2016'
|
|
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'
|
|
}
|
|
|
|
apply plugin: 'java-library'
|
|
apply from: rootProject.file('gradle/repositories/maven.gradle')
|
|
apply from: rootProject.file('gradle/compile/java.gradle')
|
|
apply from: rootProject.file('gradle/test/junit5.gradle')
|
|
apply from: rootProject.file('gradle/publish/maven.gradle')
|
|
apply from: rootProject.file('gradle/publish/maven-central/sonatype.gradle')
|