standardnumber/build.gradle

35 lines
1.2 KiB
Groovy
Raw Normal View History

2017-01-30 23:57:40 +01:00
plugins {
2023-05-24 12:13:08 +02:00
id 'maven-publish'
id 'signing'
id "io.github.gradle-nexus.publish-plugin" version "2.0.0-rc-1"
2017-01-30 23:57:40 +01:00
}
2020-06-08 15:07:03 +02:00
wrapper {
2023-03-06 17:31:22 +01:00
gradleVersion = libs.versions.gradle.get()
distributionType = Wrapper.DistributionType.BIN
2017-01-30 23:57:40 +01:00
}
2020-06-08 15:07:03 +02:00
ext {
2024-07-22 07:21:39 +02:00
name = rootProject.name
2020-06-08 15:07:03 +02:00
description = 'Standardnumber processing for Java'
inceptionYear = '2016'
2024-07-22 07:21:39 +02:00
user = 'joerg'
2023-05-24 12:13:08 +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'
2020-06-08 15:07:03 +02:00
issueManagementSystem = 'Github'
issueManagementUrl = ext.scmUrl + '/issues'
licenseName = 'The Apache License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
2017-01-30 23:57:40 +01:00
}
apply plugin: 'java-library'
2021-05-30 16:25:28 +02:00
apply from: rootProject.file('gradle/repositories/maven.gradle')
2020-06-08 15:07:03 +02:00
apply from: rootProject.file('gradle/compile/java.gradle')
apply from: rootProject.file('gradle/test/junit5.gradle')
2023-05-24 12:13:08 +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')