https://gradle.com/ logo
Join Slack
Powered by
# configuration-cache
  • s

    Slackbot

    11/22/2021, 7:47 PM
    This message was deleted.
  • s

    Slackbot

    12/02/2021, 8:04 PM
    This message was deleted.
  • s

    Slackbot

    12/07/2021, 3:08 PM
    This message was deleted.
  • s

    Slackbot

    12/31/2021, 1:52 AM
    This message was deleted.
  • s

    Slackbot

    01/03/2022, 4:23 PM
    This message was deleted.
  • s

    Slackbot

    01/11/2022, 6:35 PM
    This message was deleted.
  • s

    Slackbot

    01/18/2022, 11:16 AM
    This message was deleted.
    j
    • 2
    • 3
  • s

    Slackbot

    01/27/2022, 10:49 AM
    This message was deleted.
  • v

    Vidyasagar Samudrala

    12/30/2024, 5:41 AM
    Run 'flutter -h' (or 'flutter <command> -h') for available flutter commands and options. PS C:\Users\Lenovo\flutterProjects> flutter run Launching lib\main.dart on sdk gphone x86 in debug mode... FAILURE: Build failed with an exception. * What went wrong: Could not open settings generic class cache for settings file 'C:\Users\Lenovo\flutterProjects\android\settings.gradle' (C:\Users\Lenovo\.gradle\caches\7.5\scripts\3d075fs9hjp81ny0sgym4v09w).
    BUG! exception in phase 'semantic analysis' in source unit '_BuildScript_' Unsupported class file major version 65
    * Try:
    Run with --stacktrace option to get the stack trace.
    Run with --info or --debug option to get more log output.
    Run with --scan to get full insights.
    * Get more help at https://help.gradle.org BUILD FAILED in 1s Running Gradle task 'assembleDebug'... 1,989ms ┌─ Flutter Fix ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐ │ [!] Your project's Gradle version is incompatible with the Java version that Flutter is using for Gradle. │ │ │ │ If you recently upgraded Android Studio, consult the migration guide at docs.flutter.dev/go/android-java-gradle-error. │ │ │ │ Otherwise, to fix this issue, first, check the Java version used by Flutter by running
    flutter doctor --verbose
    . │ │ │ │ Then, update the Gradle version specified in C:\Users\Lenovo\flutterProjects\android\gradle\wrapper\gradle-wrapper.properties to be compatible with that Java version. See the link below for more information on compatible │ │ Java/Gradle versions: │ │ https://docs.gradle.org/current/userguide/compatibility.html#java │ │ │ │ │ └──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘ Error: Gradle task assembleDebug failed with exit code 1 getting this issue
    v
    • 2
    • 1
  • r

    Rohitha Sivani Jarubula

    01/13/2025, 10:02 AM
    hello
    👋 2
  • g

    Gaurav Guleria

    01/20/2025, 7:46 AM
    Hi, can someone help me in understanding this: https://github.com/google/protobuf-gradle-plugin/pull/719/files If I am not wrong, aren't these two things effectively the same? Create a
    Provider
    , so that
    inputFiles.files
    is accessed lazily during execution, when the task action queries the fileCollection and the sources added need to be resolved.
    Copy code
    return objectFactory.fileCollection()
            .from(providerFactory.provider { unused ->
              Set<File> files = inputFiles.files
              // use files
    Use
    FileCollection.getElements()
    which is also just provides
    Provider
    for accessing inputFile.files
    Copy code
    return objectFactory.fileCollection()
            .from(inputFiles.getElements().map { files ->
              // use files
    How does the former code access
    inputFiles.files
    eagerly?
    v
    m
    • 3
    • 12
  • w

    Wojciech Zięba

    01/29/2025, 4:21 PM
    hi 👋 Do you disable Configuration Cache (CC) on CI? In all of our projects where we’ve enabled it, we’ve noticed that configuration time *increases*—on average by a minute, sometimes even more. I came across a discussion in Kotlin’s Gradle channel, and I understand that CC is supposed to help with task parallelization. However, in our case (across three apps), we’re not seeing any improvements—instead, we see that Gradle spends time on “Calculating task graph as no cached configuration is available for tasks.” which is not later reused. I’m curious - does this suggest an issue with our configuration, or do most of you simply disable CC on CI?
    👀 2
    v
    j
    +4
    • 7
    • 36
  • m

    Mudasar Cheema

    02/05/2025, 2:04 PM
    Hi! When i have enabled
    Copy code
    org.gradle.unsafe.configuration-cache=true
    in my
    gradle.properties
    i have problem building my project because of this error:
    Copy code
    * What went wrong:
    Unable to find build service with name 'jaxbJavaGenTss'.
    Why am I facing this issue and how to resolve it? Pasting my
    build.gradle.kts
    file in thread
    v
    • 2
    • 2
  • a

    Andrew Grosner

    02/06/2025, 11:05 PM
    im getting an interesting bug where configuration cache misses:
    Copy code
    Configuration on demand is an incubating feature.
    Calculating task graph as configuration cache cannot be reused because an input to task ':buildSrc:compileJava' has changed.
    but ive only changed code within a library module code, nothing in buildSrc. anyway to debug / diagnose?
    👀 1
    v
    • 2
    • 3
  • c

    Clayton Walker

    02/11/2025, 11:15 PM
    Is there a configuration-cache/task-avoidance -acceptable way of excluding classes from jacoco reports? What I see copy-pasted mostly comes from https://stackoverflow.com/questions/29887805/filter-jacoco-coverage-reports-with-gradle, namely
    Copy code
    jacocoTestReport {
        afterEvaluate {
            classDirectories.setFrom(files(classDirectories.files.collect {
                fileTree(dir: it, exclude: 'com/blah/**')
            }))
        }
    }
    but I'm wondering if there are better ways now?
    v
    • 2
    • 6
  • n

    Nicola Corti

    02/13/2025, 5:10 PM
    Hey all, What is the correct way to make this task CC friendly?
    Copy code
    val myCmakeTask by tasks.registering(Exec::class) {
        commandLine("cmake", "--build", "build")
        standardOutput = FileOutputStream("$buildDir/cmake-output.log")
        errorOutput = FileOutputStream("$buildDir/cmake-error.log")
    }
    seems like
    standardOutput
    and
    errorOutput
    are causing the problem here. Specifically:
    Copy code
    cannot serialize object of type `java.io.FileOutputStream`, a subtype of `java.io.OutputStream`, as these are not supported with the configuration cache. Only `System.out` or `System.err` can be used there.
    I can’t use
    System.out
    or
    System.err
    as I want to write on file.
    m
    • 2
    • 2
  • s

    StefMa

    02/17/2025, 3:36 PM
    Hey guys, I'm curious about the configuration cache behaviour. These are the steps happen: 1. Configuration phase 2. Storing in CC 3. Loading from CC This happen when there is no CC or something changed. I just ask myself if its necessary to load the cache, after it has been stored... Its actually "not a big deal", but for me it just feels strange that it loads again. Everything should be already there/in memory, otherwise it couldn't have been saved, right? 😁 So out of curiosity, is this "needed" to behave like that? Or could this be improved?
    m
    • 2
    • 3
  • n

    NADiNE

    03/29/2025, 9:16 AM
    Your project is configured with Android NDK 26.3.11579264, but the following plugin(s) depend on a different Android NDK version: - installed_apps requires Android NDK 27.0.12077973 Fix this issue by using the highest Android NDK version (they are backward compatible). Add the following to /Users/nadinjoma/StudioProjects/parental_control_app/android/app/build.gradle.kts: android { ndkVersion = "27.0.12077973" ... } lib/main.dart469: Error: No named parameter with the name 'excludeSystemApps'. excludeSystemApps: true, ^^^^^^^^^^^^^^^^^ ../../.pub-cache/hosted/pub.dev/installed_apps-1.6.0/lib/installed_apps.dart1632: Context: Found this candidate, but the arguments don't match. static Future<List<AppInfo>> getInstalledApps([ ^^^^^^^^^^^^^^^^ Target kernel_snapshot_program failed: Exception FAILURE: Build failed with an exception. * What went wrong: Execution failed for task 'appcompileFlutterBuildDebug'.
    Process 'command '/Users/nadinjoma/development/flutter/bin/flutter'' finished with non-zero exit value 1
    * Try:
    Run with --stacktrace option to get the stack trace.
    Run with --info or --debug option to get more log output.
    Run with --scan to get full insights.
    Get more help at https://help.gradle.org.
    BUILD FAILED in 1m 30s Running Gradle task 'assembleDebug'... 91.5s Error: Gradle task assembleDebug failed with exit code 1. any help??
    v
    • 2
    • 1
  • k

    kyle

    04/09/2025, 8:56 PM
    Hi folks. My environment has dozens of JUnit 3 suite classes - we typically invoke one suite per CI runner - and these are invoked in a proprietary way i.e. not using Gradle. Now I'm registering dozens of
    Test
    tasks (one per suite) but am finding the need to have a custom "label" for each task . For example, labeling them one of [red, green, blue]. I was considering using
    ext
    to set a custom property, i.e.
    task.ext.color = 'blue'
    , or I could register a custom extension type. Are either of these approaches going to break configuration caching? Will querying the extension at build-time cause the task to be eagerly created? In pseudocode, I might have a CI trigger which runs something like:
    Copy code
    tasks.withType(Test).collect {
      it.hasExtension(MyCustomColorExtension) and
      it.color == 'blue'
    }...
    This would enumerate the subset of tasks I need to pass to another downstream system.
    v
    r
    • 3
    • 7
  • g

    Giuseppe Barbieri

    04/23/2025, 2:11 PM
    I'm trying to enable the configuration cache on one of our project, but I get the following error within the Kotlin Compile task Is there anything I may try?
    v
    t
    • 3
    • 3
  • i

    Isaac Kirabo

    04/30/2025, 11:17 AM
    i am trying to run my flutter program and i have java 17 it shows this error can anyone help please
  • i

    Isaac Kirabo

    04/30/2025, 11:18 AM
    Launching lib\main.dart on Android SDK built for x86 in debug mode... Support for Android x86 targets will be removed in the next stable release after 3.27. See https://github.com/flutter/flutter/issues/157543 for details. FAILURE: Build failed with an exception. * What went wrong: A problem occurred configuring root project 'android'.
    Could not resolve all files for configuration ':classpath'.
    > Could not find com.android.tools.buildG 8.0.0. Searched in the following locations: - https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/ 8.0.0/gradle- 8.0.0.pom - https://repo.maven.apache.org/maven2/com/android/tools/build/gradle/ 8.0.0/gradle- 8.0.0.pom Required by: project : * Try:
    Run with --stacktrace option to get the stack trace.
    Run with --info or --debug option to get more log output.
    Run with --scan to get full insights.
    * Get more help at https://help.gradle.org BUILD FAILED in 6m 41s Error: Gradle task assembleDebug failed with exit code 1 Exited (1).
    🧵 1
    v
    • 2
    • 2
  • m

    Michael

    05/03/2025, 8:38 AM
    Hi all I'm trying to enable configuration cache for my project. I'm running
    Copy code
    ./gradlew assemble --configuration-cache
    First run
    Copy code
    Calculating task graph as no cached configuration is available for tasks: assemble
    [Build log]
    Configuration cache entry stored.
    Second run
    Copy code
    Calculating task graph as configuration cache cannot be reused because the file system entry 'build/classes/java/main' has been created.
    [Build log]
    Configuration cache entry stored.
    Third run
    Copy code
    Reusing configuration cache.
    [Build log]
    Configuration cache entry reused.
    How can I debug what depends on
    build/classes/java/main
    ? I'm using
    Copy code
    plugins {
        id 'java'
        id "org.springframework.boot" version "3.4.5"
        id "io.spring.dependency-management" version "1.1.7"
        id "org.openapi.generator" version "7.13.0"
        id "org.sonarqube" version "6.1.0.5360"
        id 'jacoco'
        id "io.freefair.lombok" version "8.13.1"
    }
    and gradle 8.14.
    m
    v
    • 3
    • 11
  • c

    Clayton Walker

    05/07/2025, 11:56 PM
    Is there a configuration-cache compatible way of doing the following: Taking a list of configuration (ConfigurationContainer, NamedDomainObjectCollection) and turn them into an input to a task? For example calling
    Copy code
    .map { it.incoming.resolutionResult.root }
    causes us to realize/create each configuration? So even if the output of this is cc-compatible, it still causes us to realized the collection. Is this fine if it's done in a configureEach, as it'll only be realized if the task is actually called? It just seems like unlike Property/Provider, there's no map/flatMap for the named object collections.
    v
    • 2
    • 9
  • o

    Oleg Nenashev

    05/14/2025, 11:32 AM
    <!channel> if you are interested in knowing more about Configuration Cache, what's coming up in Gradle 9 and beyond, and how to adopt Configuration cache in your builds and plugins... join us for the webinar with @Alex Semin tomorrow! https://gradle.com/events/gradle-configuration-cache-05-25/ We will also use this channel for Q&A, and you are welcome to start adding questions for Alex and the Configuration team below! We will answer everything either asynchronously or during the call
    💡 7
    💪 8
    gradlephant 3
    e
    n
    +3
    • 6
    • 9
  • o

    Oleg Nenashev

    05/15/2025, 3:16 PM
    Do not hesitate to ask questions here, we will ask Alex. I am also capturing questions so that we can incorporate them in our docs
  • o

    Oleg Nenashev

    05/15/2025, 3:26 PM
    And a micro-survey for those who are watching or using Configuration Cache - https://app.sli.do/event/4dkRGVpaxiLiadtgrCj3za
  • f

    Frank Riccobono

    05/15/2025, 4:12 PM
    A meeting ran long and I missed the first two third of the webinar. Will a recording be shared?
    o
    • 2
    • 1
  • s

    Slackbot

    05/15/2025, 4:29 PM
    This message was deleted.
    j
    • 2
    • 1
  • o

    Oleg Nenashev

    05/30/2025, 6:05 AM
    FYI CC issue in Gradle 9 and Kotlin Multiplatform https://kotlinlang.slack.com/archives/C19FD9681/p1748577543128899?thread_ts=1748362393.256609&amp;cid=C19FD9681
123456Latest