diff options
-rw-r--r-- | build.gradle | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle index debb058d..4594368c 100644 --- a/build.gradle +++ b/build.gradle @@ -30,6 +30,8 @@ repositories { dependencies { implementation 'com.google.code.gson:gson:2.8.8' + testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0' + testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0' // To change the versions see the gradle.properties file minecraft "com.mojang:minecraft:${project.minecraft_version}" mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" @@ -84,6 +86,10 @@ jar { } } +test { + useJUnitPlatform() +} + // configure the maven publication publishing { publications { |