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()
|
2024-01-11 18:20:30 +01:00
|
|
|
distributionType = Wrapper.DistributionType.BIN
|
2021-12-26 17:42:43 +01:00
|
|
|
}
|
2022-08-27 19:02:36 +02: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)'
|
|
|
|
inceptionYear = '2021'
|
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'
|
|
|
|
}
|
|
|
|
|
2024-01-11 18:20:30 +01:00
|
|
|
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')
|
|
|
|
}
|
|
|
|
apply from: rootProject.file('gradle/publish/sonatype.gradle')
|
|
|
|
apply from: rootProject.file('gradle/publish/forgejo.gradle')
|
2021-12-26 17:42:43 +01:00
|
|
|
|
2024-01-11 18:20:30 +01:00
|
|
|
/*
|
2021-12-26 17:42:43 +01:00
|
|
|
dependencies {
|
2022-07-29 08:49:45 +02:00
|
|
|
api libs.settings.api
|
2022-08-27 19:02:36 +02:00
|
|
|
implementation libs.net
|
2022-07-29 08:49:45 +02:00
|
|
|
implementation libs.time
|
2022-08-27 19:02:36 +02:00
|
|
|
implementation libs.datastructures.common
|
2022-07-29 08:49:45 +02:00
|
|
|
implementation libs.datastructures.json.tiny
|
2023-10-30 15:34:04 +01:00
|
|
|
implementation libs.netty.handler
|
2022-07-29 08:49:45 +02:00
|
|
|
implementation libs.reactivestreams
|
|
|
|
testImplementation libs.rxjava3
|
2023-10-04 16:05:15 +02:00
|
|
|
testImplementation libs.settings.datastructures.json
|
2021-12-26 17:42:43 +01:00
|
|
|
}
|
2024-01-11 18:20:30 +01:00
|
|
|
*/
|