is there a way to always get the latest version of...
# gradle
j
is there a way to always get the latest version of the Kotlin plugin, something like this maybe?
Copy code
plugins {
    application
    kotlin("jvm").version("latest")
    maven
}
t
Probably something like
kotlin("jvm") version "1.4.+"
Gradle allows such syntax for dependencies, but that's not really advised as it could introduce unexpected breaking changes.
j
thanks! yes, i'm fully aware of the risks, just trying out something
l
If you want to easily see the latest dependencies, you might like this Gradle plugin: https://github.com/jmfayard/refreshVersions
j
Looks interesting, thanks Louis!
d
@louiscad I need this in my life... thanks! 🤩
🙂 1
l
BTW, we have a channel in this Slack: #gradle-refresh-versions