-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
41 lines (38 loc) · 1.21 KB
/
build.gradle
File metadata and controls
41 lines (38 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
// if (file("../config.gradle").exists()) {
apply from: "config.gradle"
// } else {
// apply from: "https://gitee.com/qiurongc/codes/u2jmvw8oy1edhfbr50sz675/raw?blob_name=config.gradle"
// }
repositories {
mavenLocal()
google()
maven { url 'https://jitpack.io' }
jcenter()
}
dependencies {
classpath classpaths
classpath bintrayPlugin
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigationVersion"
}
}
allprojects {
repositories {
mavenLocal()
google()
jcenter()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
tasks.register("publishAll") {
dependsOn ":adaptercompat:publishDebugPublicationToMavenLocal"
dependsOn ":emptyview:publishDebugPublicationToMavenLocal"
dependsOn ":feature:publishDebugPublicationToMavenLocal"
dependsOn ":list:publishDebugPublicationToMavenLocal"
dependsOn ":liveevent:publishDebugPublicationToMavenLocal"
dependsOn ":toolbar:publishDebugPublicationToMavenLocal"
}