Gradle's javadoc goal does not copy files from doc-files -


i found gradle's javadoc task not copy files doc-files subdirectories of package directories.

is possible fix it?

probably yes. can add action javadoc <<:

javadoc << {    //copy files here } 

or create task finalize javadoc , copy files:

task copysub(type: copy) {    //configuration goes here }  javadoc.finalizedby(copysub) 

Comments

Popular posts from this blog

How to check data type in C++? -

javascript - Is getTimezoneOffset() stable during daylight saving transition? -

sql server - SQL Query returns one result, does not return 0 or NULL result -