guava/build.gradle

35 lines
1.3 KiB
Groovy
Raw Normal View History

2020-01-19 15:34:00 +01:00
plugins {
2021-03-07 20:44:20 +01:00
id "de.marcphilipp.nexus-publish" version "0.4.0"
2020-01-19 15:34:00 +01:00
id "io.codearte.nexus-staging" version "0.21.1"
}
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 {
2021-03-07 20:44:20 +01:00
user = 'jprante'
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/publishing/publication.gradle')
apply from: rootProject.file('gradle/publishing/sonatype.gradle')