Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for updateProperties (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateSmokeTestedPluginsVersions.kt

                        ?: error("No version found for plugin $pluginId")
    
                    TestedVersion(pluginId, latest)
                }
    
        private
        fun updateProperties(fetchedVersions: List<TestedVersion>) = updateProperties {
            fetchedVersions.forEach { (pluginId, version) ->
                setProperty(pluginId, version)
            }
        }
    
        private data class TestedVersion(
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Thu Sep 18 16:06:17 GMT 2025
    - 2.3K bytes
    - Click Count (0)
  2. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateAgpVersions.kt

            )
            return FetchedVersions(latests, nightlyBuildId, nightlyVersion, aapt2Versions, buildToolsVersion)
        }
    
        private
        fun updateProperties(fetchedVersions: FetchedVersions) =
            updateProperties {
                setProperty("latests", fetchedVersions.latests.joinToString(","))
                setProperty("nightlyBuildId", fetchedVersions.nightlyBuildId)
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Fri Oct 24 09:10:29 GMT 2025
    - 7.6K bytes
    - Click Count (0)
  3. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateKotlinVersions.kt

        @get:Internal
        abstract val compatibilityDocFile: RegularFileProperty
    
        @TaskAction
        fun action() =
            fetchLatestKotlinVersions().let { latestKotlinVersions ->
                updateProperties {
                    setProperty("latests", latestKotlinVersions.joinToString(","))
                }
                updateCompatibilityDoc(
                    compatibilityDocFile,
                    "Gradle is tested with Kotlin",
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Wed Oct 29 08:29:55 GMT 2025
    - 4.3K bytes
    - Click Count (0)
Back to Top