`-tag` is a repeatable cli option, but gradle is ...
# community-support
c
-tag
is a repeatable cli option, but gradle is only outputting it once. Am I doing something wrong? is this a bug? if so can I workaround it?
implNote
is actually working correctly
Copy code
tasks.withType<Javadoc>().configureEach {
  (options as StandardJavadocDocletOptions).apply {
    addStringOption("tag", "apiNote:a:API Note:")
    addStringOption("tag", "implNote:a:Implementation Note:")
  }
}
c
that works, thanks.
🙌 1