In build.gradle.kts I can define: ```kotlin("jvm")...
# getting-started
d
In build.gradle.kts I can define:
Copy code
kotlin("jvm")
Is this 'merely' a short hand form for
id("org.jetbrains.kotlin.jvm" version "1.4.10"
or does it do anything else?
Background: This syntax breaks dependency-scanning tool 'Renovate Bot', not recognizing the dependency anymore.
s
Our projects list it as:
Copy code
kotlin("jvm") version "1.4.10"
And renovate picks it up fine. Would this work for you?
j
@Draget to answer your question: yes, it’s just a shortcut.
d
Interestingly renovate would ignore this Syntax @Saharath Kleips, we had 1.3.71 and if did not update. The moment we changed it to the id(...), it worked.
blob shrug 1