Remove broken moduleDependencies extension (worked during build but not in IDE)

This commit is contained in:
Johannes Frohnmeyer 2022-08-21 18:34:02 +00:00
parent a0c4952fe4
commit 1dfb5de378
1 changed files with 0 additions and 8 deletions

View File

@ -291,14 +291,6 @@ allprojects {
tasks.publish.dependsOn(tasks.build)
rootProject.tasks.deployDebug.dependsOn(tasks.publish)
ext.moduleDependencies = { Project project, List<String> depNames ->
project.dependencies {
depNames.each {
api project.dependencies.project(path: ":$it", configuration: "shadow")
}
}
}
}
subprojects {