# README
Gradle resolution logic
The way resolution of gradle lock files works is as follows:
- Generate init script file for project and subprojects
- Run
gradle --init-script gradle-init-script.groovy debrickedAllDeps
in order to create dependencies graph - In case permission to execute gradlew is not granted, fallback to PATHs gradle installation is used:
gradle --init-script gradle-init-script.groovy debrickedFindSubProjectPaths
The results of the executed command above is then being written into the lock file.