28 lines
639 B
Groovy
28 lines
639 B
Groovy
|
|
//for jar packaging see https://github.com/Protonull/BasicMinestomServer/blob/master/build.gradle.kts
|
|
|
|
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'eu.mhsl.minenet'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
url 'https://jitpack.io'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
|
|
|
|
//https://jitpack.io/#Minestom/Minestom
|
|
implementation 'com.github.Minestom:Minestom:d6d1b85'
|
|
implementation 'com.github.articdive:jnoise:2.1.0'
|
|
|
|
implementation 'com.github.TogAr2:MinestomPvP:388378a6d6'
|
|
}
|