graphics/build.gradle

36 lines
1.2 KiB
Groovy
Raw Permalink Normal View History

2023-05-26 10:11:40 +02:00
2018-01-20 23:26:37 +01:00
plugins {
2023-05-26 10:11:40 +02:00
id 'maven-publish'
id 'signing'
2023-10-18 10:09:16 +02:00
id "io.github.gradle-nexus.publish-plugin" version "2.0.0-rc-1"
2018-01-20 23:26:37 +01:00
}
wrapper {
gradleVersion = libs.versions.gradle.get()
2024-04-29 08:13:37 +02:00
distributionType = Wrapper.DistributionType.BIN
2018-01-20 23:26:37 +01:00
}
ext {
2023-05-26 10:11:40 +02:00
user = 'joerg'
name = 'graphics'
description = 'A collection of graphics libraries for Java'
inceptionYear = '2020'
2023-05-26 10:11:40 +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 GNU General Public License, Version 3'
licenseUrl = 'https://www.gnu.org/licenses/gpl-3.0.txt'
2018-01-20 23:26:37 +01:00
}
subprojects {
2023-05-26 10:11:40 +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-26 10:11:40 +02:00
apply from: rootProject.file('gradle/publish/maven.gradle')
2018-01-20 23:26:37 +01:00
}
2023-05-26 10:11:40 +02:00
apply from: rootProject.file('gradle/publish/sonatype.gradle')
apply from: rootProject.file('gradle/publish/forgejo.gradle')