mirror of
https://github.com/tadfisher/gradle2nix.git
synced 2026-01-12 07:50:53 -05:00
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
This commit is contained in:
13
fixtures/subprojects/multi-module/groovy/build.gradle
Normal file
13
fixtures/subprojects/multi-module/groovy/build.gradle
Normal file
@@ -0,0 +1,13 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
}
|
||||
|
||||
allprojects {
|
||||
repositories {
|
||||
jcenter()
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
testImplementation 'junit:junit:4.12'
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'com.squareup.okio:okio:2.2.2'
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(':child-a')
|
||||
implementation 'com.squareup.moshi:moshi:1.8.0'
|
||||
}
|
||||
1
fixtures/subprojects/multi-module/groovy/settings.gradle
Normal file
1
fixtures/subprojects/multi-module/groovy/settings.gradle
Normal file
@@ -0,0 +1 @@
|
||||
include ':child-a', ':child-b'
|
||||
Reference in New Issue
Block a user