https://kotlinlang.org logo
#gradle
Title
j

jlleitschuh

06/01/2017, 6:57 PM
@bamboo
Copy code
subprojects {
    buildscript.repositories {
        mavenCentral()
    }
}
The above (in the top parent project) seems to make gradle happy; such that it resolves dependencies for subprojects. But without
Copy code
buildscript {
    repositories {
        mavenCentral()
    }
}
(in each subproject) Intellij won't autocomplete for plugin extension types on the classpath. This may be a known bug that has been mentioned before; sorry about that if that's the case.