[GRADLE-444] Allow a project dependency to be specified using a Configuration object on the RHS Created: 14/Apr/09 Updated: 09/Sep/13 Resolved: 09/Sep/13 |
|
Status: | Resolved |
Project: | Gradle |
Affects Version/s: | None |
Fix Version/s: | None |
Type: | Improvement | ||
Reporter: | Adam Murdoch | Assignee: | Unassigned |
Resolution: | Won't Fix | Votes: | 0 |
Description |
For example: dependencies {
compile project(':other').configurations.spi
}
as a shortcut for dependencies { compile project(':other') { dependencyConfiguration = 'spi' } } |