Trying to exclude some tags from our javadoc generation. The javadoc tool defines a -tag option for this. For example, the tag I want to exclude is @todo, so in javadoc command line i would say:
javadoc ... -tag todo:X ...
The Gradle Javadoc object seems to offer a way to access that feature via its StandardJavadocDocletOptions#tags value, but that is giving me runtime trouble. Instead of [-tag], it tries to pass [-tags] to the javadoc executable. Is that a bug? Or am I doing something wrong?