Reputation: 1954
I have a project that uses Java and Groovy intermixed. This works very well.
However, I want to create the javadoc for this. I know the javadoc creation for plain java projects. But for a combination of Groovy and Java, I have not found such a tool. Is there something out there?
Upvotes: 0
Views: 646
Reputation: 16796
Well, there is a tool (unimaginatively) named Groovydoc, which works by way of an Ant task.
As far as I see, it also works as a drop-in replacement for javadoc on Java classes, so I suspect it would work on a mixed Java/Groovy project.
Upvotes: 1