mp
02/22/2019, 4:08 AMsubprojects { dependencies { implementation(kotlin("stdlib-jdk8")) }}
. However, when I do that, I get this from Gradle: Unresolved reference: implementation
. Playing around with project.the<DependencyHandlerScope>().run { /* stuff here */}
produces the same result. Any ideas?octylFractal
02/22/2019, 4:50 AMimplementation
is a generated accessor, it may not exist but intellij likely thinks it does due to either sharing the script dependencies wrong or caching
see https://docs.gradle.org/current/userguide/kotlin_dsl.html#type-safe-accessorsmp
02/22/2019, 4:53 AMproject.the...
. 🤷♂️octylFractal
02/22/2019, 8:21 AMoctylFractal
02/22/2019, 8:22 AMoctylFractal
02/22/2019, 8:22 AMmp
02/22/2019, 2:05 PMmp
02/22/2019, 2:06 PM.gradle
(not kts
) script I import, which is an acceptable workaround, but if you know of a way to make the relevant codegen work inside subprojects
, I'm all earsjbnizet
02/23/2019, 1:49 PM"implementation"(...)
instead of implementation(...)