groovy-extensions/build.gradle

35 lines
1.1 KiB
Groovy
Raw Permalink Normal View History

2023-05-21 12:46:58 +02:00
2021-11-04 16:28:10 +01:00
plugins {
2023-05-21 12:46:58 +02:00
id 'maven-publish'
id 'signing'
2024-01-07 15:41:55 +01:00
id "io.github.gradle-nexus.publish-plugin" version "2.0.0-rc-1"
2021-11-04 16:28:10 +01:00
}
wrapper {
2022-06-17 10:53:57 +02:00
gradleVersion = libs.versions.gradle.get()
2021-11-04 16:28:10 +01:00
distributionType = Wrapper.DistributionType.ALL
}
ext {
2023-05-24 17:20:26 +02:00
user = 'joerg'
2021-11-04 16:28:10 +01:00
name = 'groovy-extensions'
description = 'Groovy extensions'
inceptionYear = '2021'
2023-05-24 17:20:26 +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'
2021-11-04 16:28:10 +01:00
issueManagementSystem = 'Github'
issueManagementUrl = ext.scmUrl + '/issues'
licenseName = 'The Apache License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
subprojects {
apply from: rootProject.file('gradle/compile/java.gradle')
apply from: rootProject.file('gradle/test/junit5.gradle')
2023-05-21 12:46:58 +02:00
apply from: rootProject.file('gradle/publish/maven.gradle')
2021-11-04 16:28:10 +01:00
}
2023-05-21 12:46:58 +02:00
apply from: rootProject.file('gradle/publish/sonatype.gradle')
2024-01-07 15:41:55 +01:00
apply from: rootProject.file('gradle/publish/forgejo.gradle')