jedis icon indicating copy to clipboard operation
jedis copied to clipboard

Fixes #1806 by adding links user property to pom.xml

Open ljnelson opened this issue 7 years ago • 2 comments

The addition of this links property to the pom.xml fixes #1806 and allows Javadoc linking to Apache commons-pool.

ljnelson avatar May 04 '18 18:05 ljnelson

Is this ok?. Acording to the mvn javadoc command links should go in the plugin configuration. Not in the properties (https://maven.apache.org/plugins/maven-javadoc-plugin/examples/links-configuration.html#). @ljnelson where can I read some info about this?

marcosnils avatar May 05 '18 17:05 marcosnils

You may read more here: https://maven.apache.org/plugins/maven-javadoc-plugin/javadoc-mojo.html#links

Note the User Property mention. That means if that property is present—either in a <properties> stanza or supplied on the command line with -D—it will be used.

If <links> is present in the plugin configuration, then it is used regardless.

It is up to you which you prefer. For a given plugin, for a given configuration property of that plugin, if it has a user property associated with it, I tend to simply specify the property rather than all the other XML I would otherwise need.

ljnelson avatar May 05 '18 18:05 ljnelson