kotlinReflect

abstract fun kotlinReflect(): String

Equivalent to :

"org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"

Where kotlinVersion is the given by the KotlinVersion aspect (or the default value of MetaBuild.defaultKotlinVersion).

Example usage :

kotlin().apply {
    implementation( kotlinReflect() )
}