mirror of
https://github.com/BG-Software-LLC/WildLoaders.git
synced 2024-11-13 10:33:58 +01:00
36 lines
1.1 KiB
Groovy
36 lines
1.1 KiB
Groovy
group 'v1_18_R1'
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(17))
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
maven { url "https://papermc.io/repo/repository/maven-public/" }
|
|
maven { url "https://libraries.minecraft.net/" }
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly "org.spigotmc:v1_18_R1-Paper:b68"
|
|
|
|
compileOnly 'io.papermc.paper:paper-api:1.18.1-R0.1-20211210.153434-2'
|
|
|
|
compileOnly 'com.mojang:authlib:3.2.38'
|
|
compileOnly 'com.mojang:datafixerupper:4.0.26'
|
|
compileOnly 'com.mojang:brigadier:1.0.18'
|
|
compileOnly 'com.google.guava:guava:31.0.1-jre'
|
|
compileOnly 'com.google.code.gson:gson:2.9.0'
|
|
compileOnly 'net.kyori:adventure-key:4.9.3'
|
|
compileOnly 'net.kyori:examination-api:1.3.0'
|
|
compileOnly 'net.kyori:adventure-api:4.9.3'
|
|
compileOnly 'net.md-5:bungeecord-chat:1.16-R0.4'
|
|
compileOnly 'io.netty:netty-all:4.1.72.Final'
|
|
|
|
compileOnly project(":API")
|
|
compileOnly parent
|
|
}
|
|
|
|
if (project.hasProperty('nms.compile_v1_18') && !Boolean.valueOf(project.findProperty("nms.compile_v1_18").toString())) {
|
|
project.tasks.all { task -> task.enabled = false }
|
|
} |