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

Switch gradle scanning to use lockfiles #780

Open
wants to merge 10 commits into
base: master
Choose a base branch
from

Conversation

maitrayshah-cb
Copy link
Contributor

Switching gradle scanning to using lockfiles. Lockfiles will have to be present in the code itself. This allows for more consistent scanning while also reducing salus container size.

  • Single Project
allprojects {
    dependencyLocking {
        lockAllConfigurations()
    }
}

Generate lockfile: gradle dependencies --write-locks

  • Multi Project
allprojects {
    dependencyLocking {
        lockAllConfigurations()
    }

    task resolveAndLockAll {
        doFirst {
            assert gradle.startParameter.writeDependencyLocks
        }
        doLast {
            configurations.findAll {
                // Add any custom filtering on the configurations to be resolved
                it.canBeResolved
            }.each { it.resolve() }
        }
    }
}

Generate lockfile: gradle resolveAndLockAll --write-locks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant