This repository has been archived on 2024-08-29. You can view files and clone it, but cannot push or open issues or pull requests.
world-museum/build.gradle
2023-04-14 00:28:08 +02:00

21 lines
399 B
Groovy

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()
}