guava/build.gradle

45 lines
1.7 KiB
Groovy
Raw Permalink Normal View History

2020-01-19 15:34:00 +01:00
plugins {
id "checkstyle"
id "pmd"
2023-05-25 16:30:30 +02:00
id 'maven-publish'
id 'signing'
id "io.github.gradle-nexus.publish-plugin" version "1.3.0"
id "com.github.spotbugs" version "5.0.14"
id "org.cyclonedx.bom" version "1.7.2"
id "org.xbib.gradle.plugin.asciidoctor" version "2.5.2.2"
2020-01-19 15:34:00 +01:00
}
2021-03-07 20:44:20 +01:00
wrapper {
2022-08-27 18:57:11 +02:00
gradleVersion = libs.versions.gradle.get()
2021-03-07 20:44:20 +01:00
distributionType = Wrapper.DistributionType.ALL
2020-01-19 15:34:00 +01:00
}
ext {
2023-05-25 16:30:30 +02:00
user = 'joerg'
2021-03-07 20:44:20 +01:00
name = 'guava'
description = 'Guava implementation with named modules for Java 11+'
inceptionYear = '2019'
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'
2020-01-19 15:34:00 +01:00
}
2021-03-07 20:44:20 +01:00
apply plugin: 'java-library'
2022-08-27 18:57:11 +02:00
2021-03-18 22:19:14 +01:00
apply from: rootProject.file('gradle/init/banner.gradle')
2021-03-07 20:44:20 +01:00
apply from: rootProject.file('gradle/ide/idea.gradle')
2021-06-03 20:36:24 +02:00
apply from: rootProject.file('gradle/repositories/maven.gradle')
2021-03-07 20:44:20 +01:00
apply from: rootProject.file('gradle/compile/java.gradle')
apply from: rootProject.file('gradle/test/junit5.gradle')
apply from: rootProject.file('gradle/quality/cyclonedx.gradle')
apply from: rootProject.file('gradle/quality/spotbugs.gradle')
apply from: rootProject.file('gradle/quality/checkstyle.gradle')
apply from: rootProject.file('gradle/quality/pmd.gradle')
2023-05-25 16:30:30 +02:00
apply from: rootProject.file('gradle/publish/sonatype.gradle')
apply from: rootProject.file('gradle/publish/forgejo.gradle')