From bc778f24e12974c5cc9d275274a969ec2d953ee4 Mon Sep 17 00:00:00 2001 From: Jon Schewe Date: Thu, 2 Jul 2020 21:12:57 -0500 Subject: [PATCH] Fix issue with testsets and eclipse classpath For some reason testsets has decided to no longer include dependencies in the generated classpath for eclipse. Enabling this property causes that to work again. See https://github.com/unbroken-dome/gradle-testsets-plugin/issues/110 for discussion of this. --- gradle.properties | 1 + 1 file changed, 1 insertion(+) create mode 100644 gradle.properties diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 000000000..c63af878d --- /dev/null +++ b/gradle.properties @@ -0,0 +1 @@ +org.unbroken-dome.test-sets.modifyEclipseClasspath=true