rpm/build.gradle

35 lines
1.2 KiB
Groovy
Raw Permalink Normal View History

2017-10-07 13:14:33 +02:00
plugins {
2023-05-16 14:03:22 +02:00
id 'maven-publish'
id 'signing'
2024-01-07 16:30:16 +01:00
id "io.github.gradle-nexus.publish-plugin" version "2.0.0-rc-1"
}
wrapper {
2023-05-16 14:03:22 +02:00
gradleVersion = libs.versions.gradle.get()
distributionType = Wrapper.DistributionType.ALL
}
ext {
2024-01-07 16:30:16 +01:00
user = 'joerg'
name = 'rpm'
description = 'RPM implementation in Java with plugins for Ant, Maven, Gradle'
inceptionYear = '2016'
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'
2017-10-07 13:14:33 +02:00
}
subprojects {
2023-05-16 14:03:22 +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')
apply from: rootProject.file('gradle/publish/maven.gradle')
2017-10-07 13:14:33 +02:00
}
apply from: rootProject.file('gradle/publish/sonatype.gradle')
apply from: rootProject.file('gradle/publish/forgejo.gradle')