mirror of
https://github.com/BG-Software-LLC/WildLoaders.git
synced 2024-11-28 12:56:42 +01:00
36 lines
1.1 KiB
Groovy
36 lines
1.1 KiB
Groovy
group 'v1_19_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_19_R1-Paper:git-4a4ee79"
|
|
|
|
compileOnly 'io.papermc.paper:paper-api:1.19-R0.1-SNAPSHOT'
|
|
|
|
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.1-jre'
|
|
compileOnly 'com.google.code.gson:gson:2.9.0'
|
|
compileOnly 'net.kyori:adventure-key:4.10.1'
|
|
compileOnly 'net.kyori:examination-api:1.3.0'
|
|
compileOnly 'net.kyori:adventure-api:4.10.1'
|
|
compileOnly 'net.md-5:bungeecord-chat:1.16-R0.4'
|
|
compileOnly 'io.netty:netty-all:4.1.77.Final'
|
|
|
|
compileOnly project(":API")
|
|
compileOnly parent
|
|
}
|
|
|
|
if (project.hasProperty('nms.compile_v1_19') && !Boolean.valueOf(project.findProperty("nms.compile_v1_19").toString())) {
|
|
project.tasks.all { task -> task.enabled = false }
|
|
} |