2021-12-26 17:42:43 +01:00
|
|
|
plugins {
|
|
|
|
id "de.marcphilipp.nexus-publish" version "0.4.0"
|
|
|
|
id "io.codearte.nexus-staging" version "0.21.1"
|
|
|
|
}
|
|
|
|
|
|
|
|
wrapper {
|
2022-07-29 08:49:45 +02:00
|
|
|
gradleVersion = libs.versions.gradle.get()
|
2021-12-26 17:42:43 +01:00
|
|
|
distributionType = Wrapper.DistributionType.ALL
|
|
|
|
}
|
|
|
|
ext {
|
|
|
|
user = 'jprante'
|
|
|
|
name = 'event'
|
|
|
|
description = 'Event framework for Java (NIO paths, files, timers, journals)'
|
|
|
|
inceptionYear = '2021'
|
|
|
|
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'
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'java-library'
|
|
|
|
apply from: rootProject.file('gradle/ide/idea.gradle')
|
|
|
|
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/publishing/publication.gradle')
|
|
|
|
apply from: rootProject.file('gradle/publishing/sonatype.gradle')
|
|
|
|
|
|
|
|
dependencies {
|
2022-07-29 08:49:45 +02:00
|
|
|
api libs.settings.api
|
|
|
|
implementation libs.guava
|
|
|
|
implementation libs.time
|
|
|
|
implementation libs.datastructures.json.tiny
|
|
|
|
implementation libs.reactivestreams
|
|
|
|
testImplementation libs.rxjava3
|
2021-12-26 17:42:43 +01:00
|
|
|
}
|