Update Gradle wrapper, dependencies, and startup scripts

- Upgraded Gradle to 9.5.0 and enhanced wrapper properties with network timeout, retries, and URL validation settings.
- Updated dependencies to newer versions of lombok and simple libraries.
- Refined `gradlew` and `gradlew.bat` scripts for better error handling, compliance, and performance.
This commit is contained in:
Jan Meinl
2026-05-13 19:48:13 +02:00
parent a46b8081cf
commit 470a41c783
5 changed files with 71 additions and 61 deletions
+8 -8
View File
@@ -15,14 +15,14 @@ repositories {
}
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.42'
annotationProcessor 'org.projectlombok:lombok:1.18.42'
compileOnly 'org.projectlombok:lombok:1.18.46'
annotationProcessor 'org.projectlombok:lombok:1.18.46'
implementation("dev.coph:simpleauthentication:0.4.1")
implementation("dev.coph:simplecache:1.3.0")
implementation("dev.coph:simplelogger:3.2.4")
implementation("dev.coph:simplerequest:5.1.1")
implementation("dev.coph:simplesql:4.2.0")
implementation("dev.coph:simpleutilities:3.12.1")
implementation 'dev.coph:simpleauthentication:0.6.1'
implementation 'dev.coph:simplecache:1.4.0'
implementation 'dev.coph:simplelogger:3.4.4'
implementation 'dev.coph:simplerequest:5.4.8'
implementation 'dev.coph:simplesql:4.3.1'
implementation 'dev.coph:simpleutilities:3.12.5'
}