From d323bcd69c8c9da411472b721462da809eb68dd3 Mon Sep 17 00:00:00 2001 From: Gary Tierney Date: Sat, 16 Sep 2017 03:04:20 +0100 Subject: [PATCH] Fix plugin test runner --- game/plugins.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/plugins.gradle b/game/plugins.gradle index 47a1f793..c2ab058f 100644 --- a/game/plugins.gradle +++ b/game/plugins.gradle @@ -85,7 +85,7 @@ def configurePluginTasks(String name, SourceSet mainSources, SourceSet testSourc def testsTask = task("test${taskName}", type: Test) { group = "plugin-verification" - testClassesDir = testSources.output.classesDir + testClassesDirs = testSources.output.classesDirs classpath = testSources.runtimeClasspath + mainSources.runtimeClasspath binResultsDir = file("$buildDir/plugin-test-results/binary/$name")