mirror of
https://github.com/Minestom/Minestom.git
synced 2024-11-08 03:40:27 +01:00
18 lines
500 B
Plaintext
18 lines
500 B
Plaintext
|
plugins {
|
||
|
application
|
||
|
id("minestom.common-conventions")
|
||
|
id("minestom.native-conventions")
|
||
|
id("com.github.johnrengelman.shadow") version("7.1.1")
|
||
|
}
|
||
|
|
||
|
application {
|
||
|
mainClass.set("net.minestom.demo.Main")
|
||
|
// This is included because Shadow is buggy. Wait for https://github.com/johnrengelman/shadow/issues/613 to befixed.
|
||
|
@Suppress("DEPRECATION")
|
||
|
mainClassName = "net.minestom.demo.Main"
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation(rootProject)
|
||
|
implementation(libs.jNoise)
|
||
|
}
|