On 16/02/2015 18:28, Robert Scholte wrote:
Hi Alan,
if you are referring to the -R / -recursive option of the jdeps tool,
then yes you can.
See
http://maven.apache.org/plugins-archives/maven-jdeps-plugin-LATEST/maven-jdeps-plugin/jdkinternals-mojo.html#recursive
I think jdeps is first of all interesting for the classes of the
current Java project, so I've set the default of this parameter to
'false'. However, if the majority thinks it is better to activate this
by default, we will consider to change this value.
I could imagine wanting to run it twice: once for the current project
where I want the build to fail if it makes direct use of JDK-internal
APIs, and a second time to run with -R and emit warnings if any of the
transitive dependences (that I don't control) are using JDK internal APIs.
-Alan