update dependencies

This commit is contained in:
Jörg Prante 2023-12-17 00:19:47 +01:00
parent 104dde2568
commit 8aa1244d86
3 changed files with 7 additions and 15 deletions

View file

@ -1,12 +1,7 @@
plugins {
id "checkstyle"
id "pmd"
id 'maven-publish'
id 'signing'
id "io.github.gradle-nexus.publish-plugin" version "2.0.0-rc-1"
//id "com.github.spotbugs" version "6.0.0-beta.3"
id "org.cyclonedx.bom" version "1.7.4"
id "org.xbib.gradle.plugin.asciidoctor" version "3.0.0"
}
wrapper {
@ -30,13 +25,9 @@ ext {
}
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/quality/checkstyle.gradle')
apply from: rootProject.file('gradle/quality/pmd.gradle')
//apply from: rootProject.file('gradle/quality/spotbugs.gradle')
apply from: rootProject.file('gradle/publish/maven.gradle')
dependencies {

View file

@ -1,5 +1,6 @@
group = org.xbib
name = event
version = 0.0.8
version = 0.0.9
org.gradle.warning.mode = ALL
org.gradle.daemon = false

View file

@ -16,9 +16,9 @@ dependencyResolutionManagement {
versionCatalogs {
libs {
version('gradle', '8.5')
version('datastructures', '5.0.5')
version('netty', '4.1.101.Final')
version('net', '4.0.2')
version('datastructures', '5.0.6')
version('netty', '4.1.104.Final')
version('net', '4.0.3')
library('netty-handler', 'io.netty', 'netty-handler').versionRef('netty')
library('net', 'org.xbib', 'net').versionRef('net')
library('datastructures-common', 'org.xbib', 'datastructures-common').versionRef('datastructures')
@ -30,11 +30,11 @@ dependencyResolutionManagement {
library('rxjava3', 'io.reactivex.rxjava3', 'rxjava').version('3.0.3')
}
testLibs {
version('junit', '5.10.0')
version('junit', '5.10.1')
library('junit-jupiter-api', 'org.junit.jupiter', 'junit-jupiter-api').versionRef('junit')
library('junit-jupiter-params', 'org.junit.jupiter', 'junit-jupiter-params').versionRef('junit')
library('junit-jupiter-engine', 'org.junit.jupiter', 'junit-jupiter-engine').versionRef('junit')
library('junit-jupiter-platform-launcher', 'org.junit.platform', 'junit-platform-launcher').version('1.10.0')
library('junit-jupiter-platform-launcher', 'org.junit.platform', 'junit-platform-launcher').version('1.10.1')
library('hamcrest', 'org.hamcrest', 'hamcrest-library').version('2.2')
}
}