How to prevent all javadoc files from being generated when there are only some changes

I use JAutodoc to automatically comment on java files in eclipse neon 2. I created a javadoc file using:

enter image description here

Then I change some java files and create javadoc again. When I check git repo, I notice that "all doc" is changed, not just the changed files.

The problem is that javadoc generates all files, and I want javadoc to generate only modified java files.

Is there any way to do this?

+4
source share
1 answer

javadoc , . javadoc , /, (.. , ..). javadoc, javadoc - Java API.

, javadoc , . , . javadoc .java (, , @link ).

Javadocs , , . .gitignore ( git rm).

+2

Source: https://habr.com/ru/post/1667322/


All Articles