You cannot ignore compilation errors. They will always fail to build.
Your only choice is to talk to someone who controls the files to commit them or find a way to replace them.
If you try to remove them from the assembly, you will also have to delete the files that use these files. for example
class A { B b; }
If B has a compilation error, your build script may skip B.java, but when you press A.java, it will try to compile B anyway, so A needs to be deleted. This can be a nontrivial task.
corsiKa
source share