If you see an error message in the submit server mentioning "Clover was unable to instrument ..." it could be because you are defining a class without fully providing the type. For example: Stack<String> stack = new Stack<>(); could work in Eclipse but it may fail in the submit server. Use instead: Stack<String> stack = new Stack<String>();