- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for UpdateKotlinVersions (0.09 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateKotlinVersions.kt
/** * Fetch the latest Kotlin versions and write a properties file. * Never up-to-date, non-cacheable. */ @UntrackedTask(because = "Not worth tracking") abstract class UpdateKotlinVersions : AbstractVersionsUpdateTask() { @get:Internal abstract val minimumSupported: Property<String> @get:Internal abstract val compatibilityDocFile: RegularFileProperty @TaskAction
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Oct 29 08:29:55 GMT 2025 - 4.3K bytes - Click Count (0) -
build-logic/build-update-utils/src/test/groovy/gradlebuild/buildutils/tasks/UpdateKotlinVersionsTest.groovy
when: def selected = UpdateKotlinVersions.selectVersionsFrom(minimumSupported, allVersions) then: selected == ["1.9.10", "1.9.25", "2.0.20", "2.0.30-RC1", "2.0.40-Beta2"] } def "fails is minimumSupported is not available"() { given: def allVersions = ["2.0.0", "2.0.0-RC1", "2.0.0-Beta1"] when: UpdateKotlinVersions.selectVersionsFrom(minimumSupported, allVersions)Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Oct 29 08:29:55 GMT 2025 - 3.1K bytes - Click Count (0)