How to override options like `-notimestamp` using additional options files for Javadoc?

可紊 提交于 2020-03-04 05:03:09

问题


I have some tool executing Javadoc with an automatically generated options file, which contain options like -notimestamp to disable various features of Javadoc. That tool only allows me to add additional options files during processing to get a command line like the following:

javadoc @optsFile1 @optsFile2 @optsFile3

Is there any way to re-enable some of the -no*-options using some later options file?

Something easy like -notimestamp=false doesn't work and I don't see any yes-like options corresponding to the no-ones in the docs. So I think it's not possible without actually removing -notimestamp and prevent it from being set at all. Correct?

Thanks!

来源:https://stackoverflow.com/questions/60467118/how-to-override-options-like-notimestamp-using-additional-options-files-for-j

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!