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,13 @@
plugins {
java
}
allprojects {
repositories {
mavenCentral()
}
}
dependencies {
testImplementation("junit:junit:4.12")
}

View File

@@ -0,0 +1,8 @@
plugins {
java
}
dependencies {
implementation("com.squareup.okio:okio:2.2.2")
}

View File

@@ -0,0 +1,9 @@
plugins {
java
}
dependencies {
implementation(project(":child-a"))
implementation("com.squareup.moshi:moshi:1.8.0")
}

View File

@@ -0,0 +1 @@
include(":child-a", ":child-b")