From 8f0b7164b799861a151138c4bad73931cba03b3e Mon Sep 17 00:00:00 2001 From: Robert Muir Date: Wed, 8 Jul 2015 00:45:02 -0400 Subject: [PATCH] Fix tophints noise. previously this was done wrong, junit4 ant tasks were brought into the test classpath. This created jar hell for tests, and also encouraged people to use _internal_ stuff like its bundled guava in tests. also the task was set to be lenient and ignore errors. And we were passing in a messload of unnecessary classpaths to run this. It only needs the module classpath: the explicit ant dependencies we declare. --- pom.xml | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/pom.xml b/pom.xml index 3cb463d4bb8..25c5a737d44 100644 --- a/pom.xml +++ b/pom.xml @@ -1264,19 +1264,8 @@ org.eclipse.jdt.ui.text.custom_code_templates=test ${skip.unit.tests} - - false - - - - - - - - - - + @@ -1287,6 +1276,13 @@ org.eclipse.jdt.ui.text.custom_code_templates= + + + com.carrotsearch.randomizedtesting + junit4-ant + ${testframework.version} + +