diff options
author | CraftyOldMiner <85420839+CraftyOldMiner@users.noreply.github.com> | 2022-03-24 14:55:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-24 19:55:20 +0000 |
commit | e202e4adf979073921455083f5e737bc4fcf5f14 (patch) | |
tree | 5e1653b8696168294f2b3456d532e88d4a73fc73 /build.gradle.kts | |
parent | 7d923e6675dc681261e3cbd5fb0c81263209dbc6 (diff) | |
download | NotEnoughUpdates-e202e4adf979073921455083f5e737bc4fcf5f14.tar.gz NotEnoughUpdates-e202e4adf979073921455083f5e737bc4fcf5f14.tar.bz2 NotEnoughUpdates-e202e4adf979073921455083f5e737bc4fcf5f14.zip |
Refactor Hollows solvers, add tests, add Vec3Comparable, fix bugs (#95)
Diffstat (limited to 'build.gradle.kts')
-rw-r--r-- | build.gradle.kts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index e47b0f67..e134387e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -67,6 +67,7 @@ dependencies { annotationProcessor("org.spongepowered:mixin:0.7.11-SNAPSHOT") implementation("com.fasterxml.jackson.core:jackson-core:2.13.1") implementation("info.bliki.wiki:bliki-core:3.1.0") + testImplementation("org.junit.jupiter:junit-jupiter:5.8.2") } @@ -76,6 +77,10 @@ tasks.withType(JavaCompile::class) { options.encoding = "UTF-8" } +tasks.named<Test>("test") { + useJUnitPlatform() +} + tasks.withType(Jar::class) { archiveBaseName.set("NotEnoughUpdates") manifest.attributes.run { |