Code Monkey home page Code Monkey logo

Comments (4)

autonomousapps avatar autonomousapps commented on June 17, 2024 1

The use case is that we want to execute the task downloadStrings before a stand alone app is assembled. The normal tasks.named doesn't work because the task that we are looking for doesn't exist yet.

You can use afterEvaluate for this case. That won't eagerly realize all your tasks. Or even better, tasks.withType().matching { /* check name here */ }. If you're on Gradle 8.6, you can use tasks.named { ... } and that is lazy.

from dependency-analysis-gradle-plugin.

autonomousapps avatar autonomousapps commented on June 17, 2024

Could you try this again with the latest snapshot? I wonder if this relates to #1115, which is fixed now.

from dependency-analysis-gradle-plugin.

autonomousapps avatar autonomousapps commented on June 17, 2024

Nevermind, I can reproduce this easily in a test.

Although, what is your use-case for using whenTaskAdded? Looking at the javadoc, I'd say it's a bad practice, as it realizes all tasks in a project.

from dependency-analysis-gradle-plugin.

BraisGabin avatar BraisGabin commented on June 17, 2024
tasks.whenTaskAdded {
    if (name.startsWith("generate") && name.endsWith("Assets")) {
        dependsOn("downloadStrings")
    }
}

Last week I saw on our scans that we were creating a lot of tasks con configuration on the tasks that use that and we are looking for a way to remove them.

The use case is that we want to execute the task downloadStrings before a stand alone app is assembled. The normal tasks.named doesn't work because the task that we are looking for doesn't exist yet.

from dependency-analysis-gradle-plugin.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.