mirror of
https://github.com/Nan1t/NanoLimbo.git
synced 2025-07-09 03:30:12 +02:00
26 lines
509 B
Groovy
26 lines
509 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'ru.nanit'
|
|
version '1.0'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
compile group: 'io.netty', name: 'netty-all', version: '4.1.54.Final'
|
|
compile group: 'net.kyori', name: 'adventure-nbt', version: '4.1.1'
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes("Main-Class": "ru.nanit.limbo.NanoLimbo")
|
|
}
|
|
|
|
from {
|
|
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
|
|
}
|
|
} |