I am trying to get downloading of sources to work with a multimodule project. Using the following entry gives me the correct IDEA-Project, except sources and javadoc aren’t being downloaded. Any idea why this doesn’t work?
Idea-Config
allprojects {
apply plugin: 'maven'
apply plugin: 'idea'
idea {
module {
downloadJavadoc = true
downloadSources = true
}
}
}
And my repo-config:
repositories {
mavenLocal()
mavenCentral()
mavenRepo url: "http://repo.springsource.org/libs-milestone"
mavenRepo url: "https://repository.apache.org/content/repositories/snapshots/"
mavenRepo url: "http://source.mysema.com/maven2/releases/"
mavenRepo url: "http://repo.maven.apache.org/maven2"
}
configurations {
all*.exclude module: 'commons-logging'
}