graphics/build.gradle

45 lines
1.7 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 "checkstyle"
id "pmd"
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"
id "com.github.spotbugs" version "6.0.0-beta.3"
id "org.cyclonedx.bom" version "1.7.4"
2018-01-20 23:26:37 +01:00
}
wrapper {
gradleVersion = libs.versions.gradle.get()
distributionType = Wrapper.DistributionType.ALL
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-10-18 10:09:16 +02:00
//apply from: rootProject.file('gradle/ide/idea.gradle')
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/quality/checkstyle.gradle')
apply from: rootProject.file('gradle/quality/pmd.gradle')
2023-10-18 10:09:16 +02:00
//apply from: rootProject.file('gradle/quality/spotbugs.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')
apply from: rootProject.file('gradle/quality/cyclonedx.gradle')