mirror of
https://github.com/tadfisher/gradle2nix.git
synced 2026-01-12 07:50:53 -05:00
Rewrite based on code from the GitHub Dependency Graph Gradle Plugin
This commit is contained in:
@@ -1,15 +0,0 @@
|
||||
subprojects {
|
||||
apply plugin: 'java'
|
||||
}
|
||||
|
||||
project(':child-a') {
|
||||
dependencies {
|
||||
implementation project(':child-b')
|
||||
}
|
||||
}
|
||||
|
||||
project(':child-b') {
|
||||
dependencies {
|
||||
implementation project(':child-c')
|
||||
}
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
include ':child-a', ':child-b', ':child-c', ':child-d'
|
||||
@@ -4,10 +4,10 @@ plugins {
|
||||
|
||||
allprojects {
|
||||
repositories {
|
||||
jcenter()
|
||||
mavenCentral()
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
testImplementation 'junit:junit:4.12'
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ plugins {
|
||||
|
||||
allprojects {
|
||||
repositories {
|
||||
jcenter()
|
||||
mavenCentral()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
|
||||
plugins {
|
||||
java
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
|
||||
plugins {
|
||||
java
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user