Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Pull (1.12 sec)

  1. .teamcity/src/main/kotlin/common/CommonExtensions.kt

     * that runs with the Gradle wrapper.
     *
     * @see GradleBuildStep
     */
    fun BuildSteps.gradleWrapper(
        buildType: BuildType? = null,
        init: GradleBuildStep.() -> Unit,
    ): GradleBuildStep =
        customGradle(init) {
            useGradleWrapper = true
            if (buildFile == null) {
                buildFile = "" // Let Gradle detect the build script
            }
            skipConditionally(buildType)
        }
    
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Sep 10 01:37:13 UTC 2025
    - 15K bytes
    - Viewed (0)
Back to top