is it possible to add `kotlin-reflect` dependency ...
# gradle
e
is it possible to add
kotlin-reflect
dependency via gradle plugin dsl?
g
sure, what kind problem do you have with it?
Or maybe I misunderstood your question. What is “gradle plugin dsl”? Kotlin Gradle Plugin Dsl? You should use
dependencies
block, same way as with any other dependency
e
it's the "new" way of declaring stuff instead using
buildscript
section
like
Copy code
plugins {
    id "org.jetbrains.kotlin.jvm" version "1.3.10"
}
g
but this is for gradle plugins
kotlin-reflect is just a compile and runtime dependency
not a gradle plugin
e
uh, ok