- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for UpdateKotlinVersions (0.1 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/main/kotlin/gradlebuild.update-versions.gradle.kts
compatibilityDocFile = layout.projectDirectory.file("platforms/documentation/docs/src/docs/userguide/releases/compatibility.adoc") } val updateKotlinVersions = tasks.register<UpdateKotlinVersions>("updateKotlinVersions") { comment = " Generated - Update by running `./gradlew updateKotlinVersions`" minimumSupported = "2.0.0" propertiesFile = layout.projectDirectory.file("gradle/dependency-management/kotlin-versions.properties")
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 23 14:47:12 GMT 2026 - 2.8K bytes - Click Count (0)