Files
Nextus-Web/build.gradle
T

27 lines
431 B
Groovy

plugins {
id 'java'
}
group = 'dev.coph'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'io.netty:netty-all:4.2.6.Final'
implementation 'tools.jackson.core:jackson-databind:3.1.3'
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(26)
}
sourceCompatibility = JavaVersion.VERSION_26
targetCompatibility = JavaVersion.VERSION_26
}