2020-06-24 14:58:55 -07:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
google()
|
2022-07-29 12:07:50 -07:00
|
|
|
mavenCentral()
|
2020-06-24 14:58:55 -07:00
|
|
|
}
|
|
|
|
dependencies {
|
2022-07-29 06:38:24 -07:00
|
|
|
classpath 'com.android.tools.build:gradle:4.2.2'
|
2020-06-24 14:58:55 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-15 11:19:02 -07:00
|
|
|
apply from: 'dependencies.gradle'
|
|
|
|
|
2020-06-24 14:58:55 -07:00
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
2022-07-29 12:07:50 -07:00
|
|
|
mavenCentral()
|
2020-06-24 17:02:05 -07:00
|
|
|
maven { url 'https://jitpack.io' }
|
2020-06-24 14:58:55 -07:00
|
|
|
}
|
2022-03-15 11:19:02 -07:00
|
|
|
|
|
|
|
plugins.withType(JavaPlugin) {
|
|
|
|
dependencies {
|
|
|
|
implementation libs.annotations
|
2022-03-15 11:24:54 -07:00
|
|
|
testImplementation libs.junit
|
2022-03-15 11:19:02 -07:00
|
|
|
}
|
|
|
|
}
|
2020-06-24 14:58:55 -07:00
|
|
|
}
|
2020-06-24 15:21:05 -07:00
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
2022-07-28 11:55:50 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// gradlew allDeps
|
|
|
|
subprojects {
|
|
|
|
task allDeps(type: DependencyReportTask) {}
|
|
|
|
}
|