Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for bundleGroovyMajor (0.06 sec)

  1. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

    import gradlebuild.modules.model.License
    
    
    abstract class ExternalModulesExtension(bundleGroovyMajor: Int) {
    
        val groovyVersion = when (bundleGroovyMajor) {
            4 -> "4.0.29"
            // This is expected to contain Groovy 5 soon, once it's released or we need to test it.
            else -> error("Unsupported Groovy major version: $bundleGroovyMajor")
        }
    
        val configurationCacheReportVersion = "1.30"
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Dec 19 06:45:52 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  2. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

        const val RUN_ANDROID_STUDIO_IN_HEADLESS_MODE = "runAndroidStudioInHeadlessMode"
        const val STUDIO_HOME = "studioHome"
        const val BUNDLE_GROOVY_MAJOR = "bundleGroovyMajor"
        const val DEBUG_DAEMON = "debugDaemon"
        const val DEBUG_LAUNCHER = "debugLauncher"
    
        /**
         * Run docs tests with the configuration cache enabled.
         */
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Dec 18 22:01:30 UTC 2025
    - 17.7K bytes
    - Viewed (0)
Back to top