Initial commit

This commit is contained in:
2022-09-17 10:49:36 +02:00
parent 1e8420a83e
commit 59a6e1c423
368 changed files with 26176 additions and 0 deletions

27
build.gradle Normal file
View File

@ -0,0 +1,27 @@
//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'
}