gradle fix

This commit is contained in:
2023-04-14 00:21:57 +02:00
commit 78e8c35200
12 changed files with 439 additions and 0 deletions

21
build.gradle Normal file
View File

@@ -0,0 +1,21 @@
plugins {
id 'java'
}
group = 'eu.mhsl.craftattack.worldmuseum'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
implementation 'com.github.Minestom:Minestom:8ad2c7701f'
}
test {
useJUnitPlatform()
}