Since Java 1.5 or so, javac is appearing in the form of a third party jar to find other jars . This can lead to many undesirable side effects:
- As jar files have been renamed, whenever we compile, we now get a warning flood (
-Xlint: -path
) - The classes we do not want in the classroom are being brought back, even if they have left it due to some reason.
- Extra time was created to see all these extra jars, due to the solution of this material, we really do not want it.
That is why I was thinking that anyone knows the invocation of magic to disable it. Assuming that the Sun does not saddle us with another feature which we did not want and we could not close once.
Comments
Post a Comment