Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(gradle-plugin): enable lazy evaluation, implicit task dependencies and fixing setEncoding #4761

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Oct 28, 2024

  1. feat(gradle-plugin): enable lazy configuration

    changes:
      - enable lazy evaluation by
        - replacing all Task configurations with gradles Property types
        - using `register` instead of `create` to register the task
      - remove wrongly set task dependencies that can cause circular dependencies. Task dependencies are now inferred by the set classpath. When gradle detects that an output of a task (like compileJava) is used an automatic dependency is formed and `resolve` will always execute compileJava first. The advantage is that this is dynamic. If one does NOT want `compileJava` to be executed it won't be as soon as nothing of compileJava is on the configured classpath
    nbrugger-tgm authored and frantuma committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    27331ce View commit details
    Browse the repository at this point in the history