I am trying to create a Scaladoc for my code using scala -maven-plugin 3.0.2 (Scala Version 2.9.2). When i use
mvn scala:doc
then I don't get documentation for the private types and elements of my Scala code . I checked with the plugin documentation, but I can not find an option for this.
Oddly, the scaladoc plugin creates documentation for private elements of my Java code . But since it does not create documentation for comments on Java HTML code, this is pretty useless.
Did I miss something?
source
share