gradle-plugins/build.gradle

21 lines
709 B
Groovy
Raw Normal View History

2021-11-09 14:08:25 +01:00
wrapper {
gradleVersion = libs.versions.gradle.get()
2024-01-08 00:38:42 +01:00
distributionType = Wrapper.DistributionType.BIN
2021-11-09 14:08:25 +01:00
}
ext {
name = rootProject.name
2021-11-09 14:08:25 +01:00
description = 'Gradle plugins'
inceptionYear = '2021'
user = 'jprante'
2021-11-09 14:08:25 +01:00
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'
}