Gradle's javadoc task stops working when using PlantUML

0 votes
asked Aug 14, 2015 in To be sorted by Juergen.Zimmermann (120 points)

In a Gradle project I try to use PlantUML. I defined a Gradle task for PlantUML (based on the ANT task) which works fine, and generates png images.

However, the javadoc task of Gradle stops working and I'm getting messages like this one:

...\AbstractKunde.java:91: error: unknown tag: startuml

 * @startuml

I assume that I anyhow must extend the javadoc functionality. Doclets? Anything else? Any hint is appreciated! I'm using Java 8 and Windows 8.1

1 Answer

0 votes
answered Aug 14, 2015 by plantuml (298,440 points)
selected Aug 14, 2015 by Juergen.Zimmermann
 
Best answer
Hi,

Maybe you should try yo turn off doclint. Example here:

http://blog.joda.org/2014/02/turning-off-doclint-in-jdk-8-javadoc.html
commented Aug 14, 2015 by Juergen.Zimmermann (120 points)
Thank you, this way the issue is gone.
...