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

java - Run spring boot application error: Cannot instantiate interface org.springframework.context.ApplicationListener -

reactjs - React router and this.props.children - how to pass state to this.props.children -

Excel VBA "Microsoft Windows Common Controls 6.0 (SP6)" Location Changes -