I'm attempting to change the behavior of a task depending upon whether it can
resolve the dependencies it requires (as they will not be available from all
build locations)
While I can catch the ResolveException from explicitly calling resolve() I do
not see any convenient way to not have the "WARNINGS module not found" messages
being displayed to the user.
I suppose I could disable logging just before the resolve call and in a finally
block after it is tested. Is there a less brute force way to test a dependency
resolution without the warning messages?
-Spencer