event/build.gradle

35 lines
1.2 KiB
Groovy
Raw Normal View History

2021-12-26 17:42:43 +01:00
plugins {
2023-10-01 16:04:07 +02:00
id 'maven-publish'
id 'signing'
id "io.github.gradle-nexus.publish-plugin" version "2.0.0-rc-1"
2021-12-26 17:42:43 +01:00
}
wrapper {
2022-07-29 08:49:45 +02:00
gradleVersion = libs.versions.gradle.get()
distributionType = Wrapper.DistributionType.BIN
2021-12-26 17:42:43 +01:00
}
2021-12-26 17:42:43 +01:00
ext {
2023-10-01 16:04:07 +02:00
user = 'joerg'
2021-12-26 17:42:43 +01:00
name = 'event'
description = 'Event framework for Java (NIO paths, files, timers, journals)'
2024-03-20 17:28:34 +01:00
inceptionYear = '2024'
2023-10-01 16:04:07 +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'
issueManagementSystem = 'Forgejo'
2021-12-26 17:42:43 +01:00
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/compile/java.gradle')
apply from: rootProject.file('gradle/test/junit5.gradle')
apply from: rootProject.file('gradle/repositories/maven.gradle')
2024-03-20 17:28:34 +01:00
apply from: rootProject.file('gradle/publish/maven.gradle')
}
apply from: rootProject.file('gradle/publish/sonatype.gradle')
apply from: rootProject.file('gradle/publish/forgejo.gradle')