datastructures/build.gradle

36 lines
1.2 KiB
Groovy
Raw Permalink Normal View History

2020-09-12 22:42:03 +02:00
plugins {
id 'maven-publish'
id 'signing'
2023-09-30 22:59:12 +02:00
id "io.github.gradle-nexus.publish-plugin" version "2.0.0-rc-1"
2020-09-12 22:42:03 +02:00
}
wrapper {
2022-06-01 10:09:09 +02:00
gradleVersion = libs.versions.gradle.get()
2024-05-16 16:33:21 +02:00
distributionType = Wrapper.DistributionType.BIN
2020-09-12 22:42:03 +02:00
}
ext {
2024-07-21 22:05:38 +02:00
name = rootProject.name
2023-05-24 20:16:02 +02:00
user = 'joerg'
2020-09-12 22:42:03 +02:00
description = 'Data structures for Java'
inceptionYear = '2012'
2023-05-24 20:16:02 +02:00
url = 'https://xbib.org/' + user + '/' + name
scmUrl = 'https://xbib.org/' + user + '/' + name
scmConnection = 'scm:git:git://xbib.org/' + user + '/' + name + '.git'
scmDeveloperConnection = 'scm:git:ssh://forgejo@xbib.org:' + user + '/' + name + '.git'
2020-09-12 22:42:03 +02:00
issueManagementSystem = 'Github'
issueManagementUrl = ext.scmUrl + '/issues'
licenseName = 'The Apache License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
subprojects {
apply from: rootProject.file('gradle/repositories/maven.gradle')
apply from: rootProject.file('gradle/compile/java.gradle')
2022-11-05 20:32:41 +01:00
apply from: rootProject.file('gradle/test/junit5.gradle')
apply from: rootProject.file('gradle/publish/maven.gradle')
2020-09-12 22:42:03 +02:00
}
apply from: rootProject.file('gradle/publish/sonatype.gradle')
2023-05-24 20:16:02 +02:00
apply from: rootProject.file('gradle/publish/forgejo.gradle')