Questions tagged [groovydoc]

GroovyDoc is Groovy's equivalent for JavaDoc

37 questions
0
votes
1 answer

How to configure groovydoc (for gradle) to generate documentation for both java and groovy source

The documentation for the groovy doc task (see link) states: Generates HTML API documentation for Groovy source, and optionally, Java source But the rest of the documentation does not explain how to optionally generate the documentation for java…
yan
  • 2,932
  • 1
  • 23
  • 25
0
votes
1 answer

publish groovy doc with gradle

I have a project with about 50% Java code and 50% Groovy that i try to publish to Sonatype ossrh. Publishing snapshots goes well but the docs jar is missing (both when publishing locally and publishing to Sonatype Nexus). I can create the combined…
Per
  • 340
  • 4
  • 9
0
votes
1 answer

Unable to get method doc using GroovyRootDocBuilder

I am trying to get the class doc using GroovyRootDocBuilder Properties properties = new Properties(); properties.setProperty("publicScope", "true"); properties.setProperty("protectedScope", "true"); …
Sanket Bajoria
  • 748
  • 6
  • 18
0
votes
1 answer

JavaDocs option not visible in my Eclipse Project menu

I was trying to follow this posting How to generate Javadoc HTML in Eclipse? But in my Eclipse Neon 3 or Mars 2, versions I can't see the menu options like Project --> Generate JavaDocs... Do I need to install any plugins or do some preparation step…
0
votes
0 answers

How to include Groovy or Java annotations in Gradle's generated groovydocs?

For example, I have the following code in UserController.groovy: /** * Retrieves all users from the database. * * @return A list of all users from the database. */ @GetMapping @ApiOperation(value = 'Retrieves all users from the…
homersimpson
  • 4,124
  • 4
  • 29
  • 39
0
votes
1 answer

Custom GroovyDocTool not finding anything

I'm having difficulty using GroovyDocTool. No matter what paths I pass into it, my rootDoc does not resolve to any packages, classes, or methods. I have to assume I'm just passing in the wrong paths, but for the life of me can't figure out what to…
Jefferey Cave
  • 2,507
  • 1
  • 27
  • 46
0
votes
1 answer

GroovyDoc in Gradle not working

I am trying to generate groovydocs in gradle script using command gradle groovydoc. I can see the command executed successfully as below: Dynamic properties are deprecated:…
Prathap
  • 1,023
  • 7
  • 19
  • 33
1 2
3