diff --git a/build.gradle b/build.gradle index 30cb7f2..d4b343c 100644 --- a/build.gradle +++ b/build.gradle @@ -1,13 +1,8 @@ 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 { @@ -31,16 +26,10 @@ ext { } subprojects { - apply from: rootProject.file('gradle/ide/idea.gradle') 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/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') } apply from: rootProject.file('gradle/publish/sonatype.gradle') apply from: rootProject.file('gradle/publish/forgejo.gradle') -apply from: rootProject.file('gradle/quality/cyclonedx.gradle') diff --git a/gradle.properties b/gradle.properties index 2654ee7..63ec61e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,6 @@ group = org.xbib name = net-http -version = 4.0.6 +version = 4.0.7 org.gradle.warning.mode = ALL +org.gradle.daemon = false diff --git a/settings.gradle b/settings.gradle index c4ceb53..b980585 100644 --- a/settings.gradle +++ b/settings.gradle @@ -3,10 +3,10 @@ dependencyResolutionManagement { libs { version('gradle', '8.5') version('groovy', '4.0.16') - version('netty', '4.1.101.Final') + version('netty', '4.1.104.Final') version('netty-tcnative', '2.0.62.Final') - version('datastructures', '5.0.5') - version('net', '4.0.2') + version('datastructures', '5.0.6') + version('net', '4.0.3') library('netty-codec-http2', 'io.netty', 'netty-codec-http2').versionRef('netty') library('netty-handler', 'io.netty', 'netty-handler').versionRef('netty') library('netty-handler-proxy', 'io.netty', 'netty-handler-proxy').versionRef('netty') @@ -14,8 +14,8 @@ dependencyResolutionManagement { library('netty-kqueue', 'io.netty', 'netty-transport-native-kqueue').versionRef('netty') library('netty-boringssl', 'io.netty', 'netty-tcnative-boringssl-static').versionRef('netty-tcnative') library('conscrypt', 'org.conscrypt', 'conscrypt-openjdk-uber').version('2.5.2') - library('jackson', 'com.fasterxml.jackson.core', 'jackson-databind').version('2.14.2') - library('jna', 'net.java.dev.jna', 'jna').version('5.13.0') + library('jackson', 'com.fasterxml.jackson.core', 'jackson-databind').version('2.16.0') + library('jna', 'net.java.dev.jna', 'jna').version('5.14.0') library('groovy-templates', 'org.apache.groovy', 'groovy-templates').versionRef('groovy') library('j2html', 'com.j2html', 'j2html').version('1.6.0') library('htmlflow', 'com.github.xmlet', 'htmlflow').version('4.0') @@ -33,12 +33,12 @@ dependencyResolutionManagement { library('config', 'org.xbib', 'config').versionRef('datastructures') library('settings-datastructures-json', 'org.xbib', 'settings-datastructures-json').versionRef('datastructures') library('settings-datastructures-yaml', 'org.xbib', 'settings-datastructures-yaml').versionRef('datastructures') - library('jdbc-query', 'org.xbib', 'jdbc-query').version('1.3.0') - library('jdbc-connection-pool', 'org.xbib', 'jdbc-connection-pool').version('1.3.0') - library('event', 'org.xbib', 'event').version('0.0.7') + library('jdbc-query', 'org.xbib', 'jdbc-query').version('2.0.2') + library('jdbc-connection-pool', 'org.xbib', 'jdbc-connection-pool').version('2.0.2') + library('event', 'org.xbib', 'event').version('0.0.8') } 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')