From f54e5e3919c32c701e646deacb0c05f323bd709c Mon Sep 17 00:00:00 2001 From: Michel Hartmann Date: Sat, 19 Mar 2022 03:08:39 +0100 Subject: [PATCH] Fix MSI build (#37) * Run tests using the bundled custom runtime (JRE) issue: ALCES-5, IN-440 --- build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.gradle b/build.gradle index a6dd51c..693adef 100644 --- a/build.gradle +++ b/build.gradle @@ -105,7 +105,9 @@ runtime { } test { + dependsOn(jre) useJUnitPlatform() + executable = jre.getJreDir().dir("bin").file("java").getAsFile().getAbsolutePath() } jacocoTestReport {