net/build.gradle

39 lines
1.3 KiB
Groovy
Raw Normal View History

2022-10-20 09:43:33 +02:00
plugins {
2023-04-05 20:23:01 +02:00
id 'maven-publish'
id 'signing'
2023-09-30 22:22:33 +02:00
id "io.github.gradle-nexus.publish-plugin" version "2.0.0-rc-1"
id "org.xbib.gradle.plugin.asciidoctor" version "3.0.0"
2022-10-20 09:43:33 +02:00
}
wrapper {
gradleVersion = libs.versions.gradle.get()
2024-03-04 13:54:05 +01:00
distributionType = Wrapper.DistributionType.BIN
2022-10-20 09:43:33 +02:00
}
ext {
user = 'joerg'
2022-10-20 09:43:33 +02:00
name = 'net'
description = 'Network classes for Java'
2024-07-30 19:14:47 +02:00
vendor = 'xbib.org'
2022-10-20 09:43:33 +02:00
inceptionYear = '2016'
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'
2022-10-20 09:43:33 +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')
apply from: rootProject.file('gradle/test/junit5.gradle')
apply from: rootProject.file('gradle/documentation/asciidoc.gradle')
apply from: rootProject.file('gradle/publish/maven.gradle')
}
apply from: rootProject.file('gradle/publish/sonatype.gradle')
apply from: rootProject.file('gradle/publish/forgejo.gradle')