20 lines
527 B
Groovy
20 lines
527 B
Groovy
|
plugins {
|
||
|
id 'java'
|
||
|
}
|
||
|
|
||
|
group = 'me.zen'
|
||
|
version = '0.0.1'
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
maven { url 'https://jitpack.io' }
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation("com.github.Minestom:Minestom:aad7bdab0f")
|
||
|
implementation("de.articdive:jnoise-pipeline:4.0.0")
|
||
|
implementation("io.prometheus:simpleclient:0.16.0")
|
||
|
implementation("io.prometheus:simpleclient_hotspot:0.16.0")
|
||
|
implementation("io.prometheus:simpleclient_httpserver:0.16.0")
|
||
|
implementation("net.kyori:adventure-text-minimessage:4.12.0")
|
||
|
}
|