Skip to Main Content

Java APIs

how to disable Javadoc warning "Warning: inserting missing 'title' element"

f3f29c50-0c2a-4723-947b-cc516bd8b809Sep 2 2015 — edited Sep 2 2015

Hi ,

I am trying to disable javadoc warning

"[WARNING] line 2 column 61 - Warning: inserting missing 'title' element "

I have around 4K test cases which uses Java doc .To generate test specification I have a target make generete_XXX.  When I am running this target I get hundred's of mentioned warnings.

Small research on tidy shows that this warning means html parser tidy has corrected the document, but I want to disable these warnings from console :

my Cmake file contains rule for this target as

  add_custom_target(generate_XXX

  COMMAND ${MAVEN} site -DtestObject=avc

  COMMAND ${MAVEN} site -DtestObject=aa

  COMMAND ${MAVEN} site -DtestObject=aae

And my pom.xml contains javadoc-plugin version 2.9. I have tried with <quiet> tag but still these warnings are coming. Can someone suggest how to disable them

Post Details
Locked on Sep 30 2015
Added on Sep 2 2015
0 comments
920 views