54 lines
1.4 KiB
Groovy
54 lines
1.4 KiB
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 {
|
|
//maven 'https://repo.unnamed.team/repository/unnamed-public/'
|
|
|
|
mavenCentral()
|
|
google()
|
|
|
|
maven {
|
|
url 'https://jitpack.io'
|
|
}
|
|
|
|
maven {
|
|
url "https://repo.unnamed.team/repository/unnamed-public/"
|
|
}
|
|
|
|
maven {
|
|
url 'https://oss.sonatype.org/content/repositories/snapshots'
|
|
}
|
|
}
|
|
|
|
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:aa621021e2'
|
|
|
|
//Tools
|
|
implementation 'com.github.articdive:jnoise:2.1.0'
|
|
// implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.4.2'
|
|
// implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.4'
|
|
implementation 'org.yaml:snakeyaml:1.33'
|
|
implementation 'net.md-5:bungeecord-config:1.19-R0.1-SNAPSHOT'
|
|
|
|
|
|
//PvP
|
|
implementation 'com.github.TogAr2:MinestomPvP:135ec9e2b7'
|
|
|
|
|
|
// Hephaestus engine
|
|
implementation("team.unnamed:hephaestus-api:0.2.1-SNAPSHOT")
|
|
implementation("team.unnamed:hephaestus-reader-blockbench:0.2.1-SNAPSHOT")
|
|
implementation("team.unnamed:hephaestus-runtime-minestom:0.2.1-SNAPSHOT")
|
|
}
|