Czar
04/24/2017, 9:54 AMparent (no code)
├ subproject1
├ subproject2
│ ├ subsubproject1
│ ├ subsubproject2
│ │...
│ ╰ subsubprojectN
╰ subproject3
in project's build.gradle
I have:```
buildscript {
ext { kotlinVersion = '1.1.1' }
//other stuff
dependencies {
classpath "org.jetbrains.kotlinkotlin gradle plugin$kotlinVersion"
//other stuff
}
}
in subproject2's `build.gradle` and *only* there I have:
configure(subprojects) {
apply plugin: 'kotlin'
//other stuff
}```
IntelliJ in Event Log proposes:```
1:39 PM Configure Kotlin
Configure modules in 'parent' project
as Kotlin (Gradle) modules
as Kotlin (Gradle (JavaScript)) modules
```
Why is that? I have Kotlin configured and working properly both in IntelliJ and Gradle.