update to Gradle 8.5, Netty 4.1.101

main 7.10.2.35
Jörg Prante 7 months ago
parent 3428c627eb
commit fb491e8f49

@ -31,13 +31,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/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')

@ -1,5 +1,5 @@
group = org.xbib
name = elx
version = 7.10.2.34
version = 7.10.2.35
org.gradle.warning.mode = ALL

@ -1,9 +1,9 @@
dependencies {
testImplementation libs.junit.jupiter.api
testImplementation libs.junit.jupiter.params
testImplementation libs.hamcrest
testRuntimeOnly libs.junit.jupiter.engine
testRuntimeOnly libs.junit.jupiter.platform.launcher
testImplementation testLibs.junit.jupiter.api
testImplementation testLibs.junit.jupiter.params
testImplementation testLibs.hamcrest
testRuntimeOnly testLibs.junit.jupiter.engine
testRuntimeOnly testLibs.junit.jupiter.platform.launcher
}
test {
@ -20,7 +20,7 @@ test {
systemProperty 'java.util.logging.manager', 'org.apache.logging.log4j.jul.LogManager'
systemProperty 'io.netty.tryReflectionSetAccessible', 'false'
systemProperty 'jna.debug_load', 'true'
systemProperty 'path.home', "${project.buildDir}/"
systemProperty 'path.home', "${project.getLayout().getBuildDirectory().get().toString()}/"
failFast = false
testLogging {
events 'STARTED', 'PASSED', 'FAILED', 'SKIPPED'

Binary file not shown.

@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME

@ -1,24 +1,17 @@
dependencyResolutionManagement {
versionCatalogs {
libs {
version('gradle', '8.4')
version('junit', '5.10.0')
version('gradle', '8.5')
version('elasticsearch', '7.10.2')
// ES 7.10.2 uses lucene 8.7.0
version('lucene', '8.7.0')
// ES 7.10.2 uses log4j2 2.11.1
version('log4j', '2.20.0')
version('log4j', '2.22.0')
// ES 7.10.2 uses netty 4.1.49
version('netty', '4.1.100.Final')
version('netty', '4.1.101.Final')
// ES 7.10.2 uses Jackson 2.10.4
version('jackson', '2.15.2')
version('net-http', '4.0.2') // must match netty version
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('hamcrest', 'org.hamcrest', 'hamcrest-library').version('2.2')
library('junit4', 'junit', 'junit').version('4.13.2')
version('net-http', '4.0.6') // must match netty version
library('log4j-api', 'org.apache.logging.log4j', 'log4j-api').versionRef('log4j')
library('log4j-core', 'org.apache.logging.log4j', 'log4j-core').versionRef('log4j')
library('log4j-slf4j', 'org.apache.logging.log4j', 'log4j-slf4j-impl').versionRef('log4j')
@ -45,6 +38,15 @@ dependencyResolutionManagement {
library('time', 'org.xbib', 'time').version('3.0.0')
library('jna', 'net.java.dev.jna', 'jna').version('5.13.0')
}
testLibs {
version('junit', '5.10.0')
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('hamcrest', 'org.hamcrest', 'hamcrest-library').version('2.2')
library('junit4', 'junit', 'junit').version('4.13.2')
}
}
}

Loading…
Cancel
Save