From 83ec9cb3e3326b1e9221e0630309c207fb630e8e Mon Sep 17 00:00:00 2001 From: shedaniel Date: Tue, 19 Jul 2022 00:06:17 +0800 Subject: Add InputMethods, Close #574 --- runtime/build.gradle | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'runtime/build.gradle') diff --git a/runtime/build.gradle b/runtime/build.gradle index b94257ae5..dd0cf0dff 100644 --- a/runtime/build.gradle +++ b/runtime/build.gradle @@ -18,6 +18,12 @@ dependencies { modApi("me.shedaniel:architectury:${architectury_version}") compileClasspath(annotationProcessor("org.projectlombok:lombok:1.18.22")) compileClasspath(project(path: ":api", configuration: "namedElements")) + testImplementation(project(path: ":api", configuration: "namedElements")) + testImplementation("org.junit.jupiter:junit-jupiter:5.8.2") +} + +test { + useJUnitPlatform() } remapJar { -- cgit