Rewrite plugin, use filenames in lockfile

This commit is contained in:
Tad Fisher
2024-05-17 14:52:02 -07:00
parent e83e42f9d4
commit 8d2ec45ad4
144 changed files with 8679 additions and 7507 deletions

View File

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

View File

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