mirror of
https://github.com/Nan1t/NanoLimbo.git
synced 2025-07-11 20:20:13 +02:00
35 lines
682 B
Groovy
35 lines
682 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'com.github.johnrengelman.shadow' version '7.0.0'
|
|
}
|
|
|
|
group 'ru.nanit'
|
|
version '1.3.4'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
|
|
|
|
implementation 'org.spongepowered:configurate-yaml:4.1.2'
|
|
implementation 'io.netty:netty-all:4.1.73.Final'
|
|
implementation 'net.kyori:adventure-nbt:4.9.2'
|
|
implementation 'com.grack:nanojson:1.7'
|
|
}
|
|
|
|
shadowJar {
|
|
from 'LICENSE'
|
|
|
|
manifest {
|
|
attributes('Main-Class': 'ru.nanit.limbo.NanoLimbo')
|
|
}
|
|
|
|
minimize()
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |