Generate Groovy API doc from command line
credit belongs to
- HOW-TO Documenting Groovy with Groovydoc references:
- Documentation Comment Specification for the Standard Doclet (JDK 17) references:
- javadoc - The Java API Documentation Generator
- How and When To Deprecate APIs
- How to Write Doc Comments for the Javadoc Tool
- Chapter 10. Documentation with Javadoc
- API: com.github.javaparser.ParserConfiguration.LanguageLevel | source code : ParserConfiguration.java
$ groovydoc -classpath /usr/local/Cellar/groovy/3.0.1/libexec/lib/ \
-d output \
-windowtitle "Groovy Logging Example" \
-header "Groovy 1.8 Logging (Inspired by Actual Events)" \
-footer "Inspired by Actual Events: Logging in Groovy 1.8" \
-doctitle "Logging in Groovy 1.8 Demonstrated" \
*.groovy *.java