2022-10-15 06:57:36 -07:00
|
|
|
|
|
|
|
apply from: 'dependencies.gradle'
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
plugins.withType(JavaPlugin) {
|
|
|
|
dependencies {
|
|
|
|
implementation global_libs.annotations
|
|
|
|
testImplementation global_libs.junit
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-11-20 21:51:52 -08:00
|
|
|
|
|
|
|
// gradlew allDeps
|
|
|
|
subprojects {
|
|
|
|
task allDeps(type: DependencyReportTask) {}
|
|
|
|
}
|