diff options
author | ExternalTime <84183548+ExternalTime@users.noreply.github.com> | 2021-09-20 20:15:32 +0200 |
---|---|---|
committer | ExternalTime <84183548+ExternalTime@users.noreply.github.com> | 2021-09-20 20:15:32 +0200 |
commit | b7fbdb84f919c1afef7ef91b6dec9a1efa962257 (patch) | |
tree | 84700550fe1c3e53677f8cac2bcd9f40d614a807 | |
parent | 136bcb25d449919efc99d55524c552a0c2fc9e18 (diff) | |
download | Skyblocker-b7fbdb84f919c1afef7ef91b6dec9a1efa962257.tar.gz Skyblocker-b7fbdb84f919c1afef7ef91b6dec9a1efa962257.tar.bz2 Skyblocker-b7fbdb84f919c1afef7ef91b6dec9a1efa962257.zip |
Added junit to dependencies
-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 { |