Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for applyDefaultDependencies (1.2 sec)

  1. .teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt

        buildType.steps {
            extraSteps()
            checkCleanM2AndAndroidUserHome(os, buildType)
        }
    
        applyDefaultDependencies(model, buildType)
    }
    
    fun applyDefaultDependencies(
        model: CIBuildModel,
        buildType: BuildType,
    ) {
        if (buildType !is CompileAll) {
            buildType.dependencies {
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Jun 11 12:58:05 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/configurations/TestPerformanceTest.kt

                    ),
                )
    
                checkCleanM2AndAndroidUserHome(os)
            }
    
            applyDefaultDependencies(model, this)
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Mon Aug 25 20:21:47 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/PerformanceTest.kt

                        checkCleanM2AndAndroidUserHome(os)
                    }
                }
    
                applyDefaultDependencies(model, this)
            },
        )
    
    fun getPerformanceTestTaskNames(
        performanceSubProject: String,
        testProjects: List<String>,
        performanceTestTaskSuffix: String,
    ): List<String> =
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/configurations/FlakyTestQuarantine.kt

            killProcessStep(KILL_PROCESSES_STARTED_BY_GRADLE, os, arch, executionMode = BuildStep.ExecutionMode.ALWAYS)
    
            steps {
                checkCleanM2AndAndroidUserHome(os)
            }
    
            applyDefaultDependencies(model, this)
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Tue Jul 29 03:24:58 UTC 2025
    - 5.4K bytes
    - Viewed (0)
Back to top