mirror of
https://github.com/tadfisher/gradle2nix.git
synced 2026-01-12 07:50:53 -05:00
Rewrite plugin, use filenames in lockfile
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
plugins {
|
||||
java
|
||||
}
|
||||
|
||||
allprojects {
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
testImplementation("junit:junit:4.12")
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
|
||||
plugins {
|
||||
java
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation("com.squareup.okio:okio:2.2.2")
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
|
||||
plugins {
|
||||
java
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(project(":child-a"))
|
||||
implementation("com.squareup.moshi:moshi:1.8.0")
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
include(":child-a", ":child-b")
|
||||
Reference in New Issue
Block a user