Gradle IDEA Plugin

From NovaOrdis Knowledge Base
Revision as of 16:45, 29 January 2019 by Ovidiu (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Internal

Overview

apply plugin: 'idea'

Downloading Sources and Javadoc

Apparently we need the help of the IDEA plugin to download sources and javadoc artifacts:

idea {

    module {

        downloadJavadoc = true
        downloadSources = true
    }
}

Also see:

Forcing Source and Javadoc Download