Any plugins attempting to show a clickable path to a file on console has been using ConsoleRenderer for quite some time now. However, 2.14 moves the class to an “internal” package, effectively breaking them with a ClassNotFoundException.
Old plugins are no longer compatible with 2.14, and they can’t be compiled against 2.14 either.
org.gradle.logging wasn’t consider part of the public API.
Our rule is if the class has a page in our Javadoc/Groovydocs, it’s public. Some older packages do not include internal in the package name, so going by package name alone isn’t enough right now. We’re trying to make more things public and promote internal/leaking types to public as well. We’re renaming packages to internal as we can.
To maintain backwards compatibility for your plugin, your best bet is to copy what ConsoleRenderer did into your plugin. There isn’t a public API within Gradle for this at the moment.