mirror of
https://github.com/Melledy/LunarCore.git
synced 2026-05-07 05:13:40 +02:00
Update to 4.2.0
This commit is contained in:
38
build.gradle
38
build.gradle
@@ -23,10 +23,10 @@ plugins {
|
||||
compileJava.options.encoding = "UTF-8"
|
||||
compileTestJava.options.encoding = "UTF-8"
|
||||
|
||||
sourceCompatibility = JavaVersion.VERSION_17
|
||||
targetCompatibility = JavaVersion.VERSION_17
|
||||
sourceCompatibility = JavaVersion.VERSION_21
|
||||
targetCompatibility = JavaVersion.VERSION_21
|
||||
|
||||
version = '1.3.0'
|
||||
version = '2.0.0'
|
||||
|
||||
var shouldGenerateProto = System.getenv("GENERATE_PROTO") == "true"
|
||||
System.out.println(shouldGenerateProto ?
|
||||
@@ -69,34 +69,34 @@ protobuf {
|
||||
dependencies {
|
||||
implementation fileTree(dir: 'lib', include: ['*.jar'])
|
||||
|
||||
implementation group: 'org.slf4j', name: 'slf4j-api', version: '2.0.9'
|
||||
implementation group: 'ch.qos.logback', name: 'logback-core', version: '1.4.14'
|
||||
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.4.14'
|
||||
implementation group: 'org.slf4j', name: 'slf4j-api', version: '2.0.17'
|
||||
implementation group: 'ch.qos.logback', name: 'logback-core', version: '1.5.32'
|
||||
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.5.32'
|
||||
|
||||
implementation group: 'it.unimi.dsi', name: 'fastutil-core', version: '8.5.12'
|
||||
implementation group: 'it.unimi.dsi', name: 'fastutil-core', version: '8.5.18'
|
||||
implementation group: 'org.reflections', name: 'reflections', version: '0.10.2'
|
||||
|
||||
implementation group: 'com.google.code.gson', name: 'gson', version: '2.10.1'
|
||||
implementation group: 'us.hebi.quickbuf', name: 'quickbuf-runtime', version: '1.3.1'
|
||||
implementation group: 'com.google.code.gson', name: 'gson', version: '2.13.2'
|
||||
implementation group: 'us.hebi.quickbuf', name: 'quickbuf-runtime', version: '1.4'
|
||||
|
||||
implementation group: 'io.javalin', name: 'javalin', version: '5.6.3'
|
||||
implementation group: 'io.javalin', name: 'javalin', version: '6.7.0'
|
||||
|
||||
implementation group: 'io.netty', name: 'netty-common', version: '4.1.101.Final'
|
||||
implementation group: 'io.netty', name: 'netty-handler', version: '4.1.101.Final'
|
||||
implementation group: 'io.netty', name: 'netty-transport-native-epoll', version: '4.1.101.Final'
|
||||
implementation group: 'io.netty', name: 'netty-transport-native-kqueue', version: '4.1.101.Final'
|
||||
implementation group: 'io.netty', name: 'netty-common', version: '4.1.132.Final'
|
||||
implementation group: 'io.netty', name: 'netty-handler', version: '4.1.132.Final'
|
||||
implementation group: 'io.netty', name: 'netty-transport-native-epoll', version: '4.1.132.Final'
|
||||
implementation group: 'io.netty', name: 'netty-transport-native-kqueue', version: '4.1.132.Final'
|
||||
|
||||
implementation group: 'dev.morphia.morphia', name: 'morphia-core', version: '2.3.9'
|
||||
implementation group: 'de.bwaldvogel', name: 'mongo-java-server', version: '1.44.0'
|
||||
implementation group: 'de.bwaldvogel', name: 'mongo-java-server-h2-backend', version: '1.44.0'
|
||||
|
||||
implementation group: 'org.jline', name: 'jline', version: '3.24.1'
|
||||
implementation group: 'org.jline', name: 'jline-terminal-jansi', version: '3.24.1'
|
||||
implementation group: 'org.jline', name: 'jline', version: '3.30.9'
|
||||
implementation group: 'org.jline', name: 'jline-terminal-jansi', version: '3.30.9'
|
||||
|
||||
protobuf files('proto/')
|
||||
|
||||
compileOnly 'org.projectlombok:lombok:1.18.30'
|
||||
annotationProcessor 'org.projectlombok:lombok:1.18.30'
|
||||
compileOnly 'org.projectlombok:lombok:1.18.42'
|
||||
annotationProcessor 'org.projectlombok:lombok:1.18.42'
|
||||
}
|
||||
|
||||
configurations.all {
|
||||
@@ -111,7 +111,7 @@ clean {
|
||||
|
||||
application {
|
||||
// Define the main class for the application
|
||||
mainClassName = 'emu.lunarcore.LunarCore'
|
||||
mainClass.set('emu.lunarcore.LunarCore')
|
||||
}
|
||||
|
||||
run {
|
||||
|
||||
Reference in New Issue
Block a user