Files
gradle2nix/fixtures/subprojects/dependent-subprojects/groovy/build.gradle
Tad Fisher 648be6bd07 Use custom dependency resolution
- Use Apache Ivy to resolve artifact URLs
- Update build model with full artifact IDs
- Generate Maven module metadata to support dynamic version constraints
- Resolve snapshot versions and generate snapshot metadata
- Add test fixtures and rewrite Gradle plugin tests
- Update dependencies
2020-01-23 10:01:38 -08:00

15 lines
226 B
Groovy

subprojects {
apply plugin: 'java'
}
project(':child-a') {
dependencies {
implementation project(':child-b')
}
}
project(':child-b') {
dependencies {
implementation project(':child-c')
}
}