-
Notifications
You must be signed in to change notification settings - Fork 9
/
build.gradle
48 lines (43 loc) · 1.57 KB
/
build.gradle
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
42
43
44
45
46
47
48
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.2.71'
ext.auto_inject = '0.0.5'
repositories {
maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}
mavenCentral()
maven { url "https://jitpack.io" }
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.2'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
//Gradle 插件实现路由表的自动加载
classpath "com.sjtu.yifei:auto-inject:$auto_inject"
}
}
allprojects {
repositories {
maven {
//一般 Add to JCenter会有审核延迟, 此时还没有添加到Jcenter中
//在未审核通过之前,可以这样使用自己的maven仓库:
url 'https://dl.bintray.com/iyifei/maven/'
}
maven { url rootProject.file("repo-vertical-textview") }
maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}
mavenCentral()
maven { url "https://jitpack.io" }
google()
jcenter()
}
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
options.addStringOption('encoding', 'UTF-8')
options.addStringOption('charSet', 'UTF-8')
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}