- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for systemProperty (3.05 sec)
-
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt
fun Project.systemProperty(propertyName: String) = providers.systemProperty(propertyName) fun Project.environmentVariable(propertyName: String) = providers.environmentVariable(propertyName) fun Project.propertyFromAnySource(propertyName: String) = gradleProperty(propertyName) .orElse(systemProperty(propertyName)) .orElse(environmentVariable(propertyName))
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Dec 18 22:01:30 UTC 2025 - 17.7K bytes - Viewed (0) -
build-logic/buildquality/src/main/kotlin/gradlebuild.arch-test.gradle.kts
} testClassesDirs += sharedArchTestClasses.filter { it.isDirectory } classpath += sourceSets["main"].output.classesDirs systemProperty("package.cycle.exclude.patterns", packageCyclesExtension.excludePatterns.get().joinToString(",")) extensions.findByType<DevelocityTestConfiguration>()?.apply {Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Dec 22 18:51:33 UTC 2025 - 3.2K bytes - Viewed (0) -
build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts
(it is JavaCompile || it is GroovyCompile || it is KotlinCompile) } dependsOn(compileTasks) } } fun Test.configureSpock() { systemProperty("spock.configuration", "GradleBuildSpockConfig.groovy") } fun Test.configureFlakyTest() { when (project.flakyTestStrategy) { FlakyTestStrategy.INCLUDE -> {} FlakyTestStrategy.EXCLUDE -> {Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Dec 19 06:44:41 UTC 2025 - 18.9K bytes - Viewed (0)