diff options
author | CraftyOldMiner <85420839+CraftyOldMiner@users.noreply.github.com> | 2022-03-27 23:07:57 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-28 00:07:57 -0400 |
commit | f237ae4cecdfa5c00ee83bd0176a591a2b174913 (patch) | |
tree | 5b3e6d01296609b2a9f1701924e973b3bd19edd4 /build.gradle.kts | |
parent | 4afcd516ffc58d55da24c5f4db14db7922f61121 (diff) | |
download | NotEnoughUpdates-f237ae4cecdfa5c00ee83bd0176a591a2b174913.tar.gz NotEnoughUpdates-f237ae4cecdfa5c00ee83bd0176a591a2b174913.tar.bz2 NotEnoughUpdates-f237ae4cecdfa5c00ee83bd0176a591a2b174913.zip |
Restore metal detector and wishing compass changes that were nuked by #94 (#104)
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 { |