This commit is contained in:
Tad Fisher
2023-12-19 13:52:14 -08:00
parent 6da87262a4
commit 8ceeeb9611
69 changed files with 5970 additions and 13633 deletions

View File

@@ -0,0 +1,10 @@
apply plugin: 'java'
repositories {
maven { url = uri(System.getProperty("org.nixos.gradle2nix.m2")) }
}
dependencies {
implementation 'org.test.included:included-child'
implementation 'org.apache:test:1.0.0'
}

View File

@@ -0,0 +1,11 @@
apply plugin: 'java-library'
group = 'org.test.included'
version = '1.0'
repositories {
maven { url = uri(System.getProperty("org.nixos.gradle2nix.m2")) }
}
dependencies {
implementation 'org.apache:foo:1.0.0'
}

View File

@@ -0,0 +1,10 @@
buildscript {
repositories {
maven { url = uri(System.getProperty("org.nixos.gradle2nix.m2")) }
}
dependencies {
classpath 'org.apache:foo:2.0.0'
}
}
rootProject.name = 'included-child'

View File

@@ -0,0 +1 @@
includeBuild 'included-child'