Update gradle and dependencies

This commit is contained in:
rtm516 2025-04-26 17:28:12 +01:00
commit bae11ef778
No known key found for this signature in database
GPG key ID: 331715B8B007C67A
8 changed files with 66 additions and 69 deletions

View file

@ -27,17 +27,13 @@ repositories {
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.0'
compileOnly 'org.geysermc.geyser:api:2.4.1-SNAPSHOT'
compileOnly('org.geysermc.geyser:core:2.4.1-SNAPSHOT') {
compileOnly(libs.bundles.geyser) {
exclude group: 'io.netty'
exclude group: 'io.netty.incubator'
}
implementation 'org.xerial:sqlite-jdbc:3.46.0.0'
implementation 'com.mysql:mysql-connector-j:9.0.0'
implementation libs.sqlite
implementation libs.mysql
}
jar {