z3950/build.gradle

42 lines
1.5 KiB
Groovy
Raw Permalink Normal View History

2023-04-14 18:59:28 +02:00
2017-11-16 00:37:06 +01:00
plugins {
2023-04-14 18:59:28 +02:00
id "pmd"
id 'maven-publish'
id 'signing'
2023-10-23 17:31:46 +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"
id "org.xbib.gradle.plugin.asciidoctor" version "3.0.0"
2017-11-16 00:37:06 +01:00
}
wrapper {
gradleVersion = libs.versions.gradle.get()
distributionType = Wrapper.DistributionType.ALL
}
2019-08-12 11:11:29 +02:00
ext {
user = 'xbib'
name = 'z3950'
description = 'Z39.50 for Java'
inceptionYear = '2017'
url = 'https://github.com/' + user + '/' + name
scmUrl = 'https://github.com/' + user + '/' + name
scmConnection = 'scm:git:git://github.com/' + user + '/' + name + '.git'
scmDeveloperConnection = 'scm:git:ssh://git@github.com:' + user + '/' + name + '.git'
issueManagementSystem = 'Github'
issueManagementUrl = ext.scmUrl + '/issues'
licenseName = 'The Apache License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
2019-11-08 09:41:06 +01:00
}
2019-08-12 11:11:29 +02:00
subprojects {
2023-04-14 18:59:28 +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-04-14 18:59:28 +02:00
apply from: rootProject.file('gradle/documentation/asciidoc.gradle')
apply from: rootProject.file('gradle/quality/pmd.gradle')
apply from: rootProject.file('gradle/publish/maven.gradle')
2017-11-16 00:37:06 +01:00
}
2023-04-14 18:59:28 +02:00
apply from: rootProject.file('gradle/publish/sonatype.gradle')
apply from: rootProject.file('gradle/quality/cyclonedx.gradle')