PicoLimbo/build.gradle
Pantera (Mad_Daniel) a327f7bc98
Bump adventure-nbt to 4.12.0
Bump adventure-nbt to 4.12.0
2022-12-01 12:23:27 +09:00

45 lines
865 B
Groovy

plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '7.1.2'
}
group 'ru.nanit'
version '1.4.1'
compileJava {
options.encoding = "UTF-8"
}
tasks.withType(JavaCompile) {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.1'
implementation 'org.spongepowered:configurate-yaml:4.1.2'
implementation 'io.netty:netty-all:4.1.85.Final'
implementation 'net.kyori:adventure-nbt:4.12.0'
implementation 'com.grack:nanojson:1.7'
}
shadowJar {
from 'LICENSE'
manifest {
attributes('Main-Class': 'ru.nanit.limbo.NanoLimbo')
}
minimize()
}
test {
useJUnitPlatform()
}