Gradle Dependencies and Dependency Configurations
Jump to navigation
Jump to search
Internal
TO DEPLETE
Overview
Dependencies for a project can be managed with Project.dependencies(Closure), Project.getDependencies() and the "dependencies" build.gradle DSL element: <syntaxhighlight lang='groovy'> dependencies {
// configuration closure
} Configurations for a project can be managed with Project.configurations(Closure), Project.getConfigurations() and the "configurations" build.gradle DSL element: <syntaxhighlight lang='groovy'> configurations {
// configuration closure
}