mirror of
https://github.com/tadfisher/gradle2nix.git
synced 2026-01-11 15:30:38 -05:00
- 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
15 lines
226 B
Groovy
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')
|
|
}
|
|
} |