littlerobots / version-catalog-update-plugin

Gradle plugin for updating a project version catalog
Apache License 2.0
565 stars 23 forks source link

Ignore beta versions #117

Closed wickenico closed 1 year ago

wickenico commented 1 year ago

In my Kotlin Ktor project with Gradle I have often the problem that version catalogue update uses some weird beta versions for example from Kotlin, Ktor and other stuff. I want to use only the latest stable version of my plugins and libs.

hvisser commented 1 year ago

As mentioned in the readme, you should configure the versions plugin for that. See https://github.com/ben-manes/gradle-versions-plugin#rejectversionsif-and-componentselection

wickenico commented 1 year ago

Thanks!