littlerobots / version-catalog-update-plugin

Gradle plugin for updating a project version catalog
Apache License 2.0
544 stars 22 forks source link

Ignore beta versions #117

Closed wickenico closed 11 months ago

wickenico commented 11 months 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 11 months 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 11 months ago

Thanks!