https://kotlinlang.org logo
Title
e

elect

11/28/2018, 8:19 AM
is it possible to add
kotlin-reflect
dependency via gradle plugin dsl?
g

gildor

11/28/2018, 8:22 AM
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

elect

11/28/2018, 8:24 AM
it's the "new" way of declaring stuff instead using
buildscript
section
like
plugins {
    id "org.jetbrains.kotlin.jvm" version "1.3.10"
}
g

gildor

11/28/2018, 8:24 AM
but this is for gradle plugins
kotlin-reflect is just a compile and runtime dependency
not a gradle plugin
e

elect

11/28/2018, 8:25 AM
uh, ok