forked from Tencent/Shadow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
32 lines (30 loc) · 1.28 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
//buildscript不能从其他gradle文件中apply,所以这段buildscript脚本存在于多个子构建中。
//请更新buildscript时同步更新。
buildscript {
loadVersions:
{// 读取versions.properties到ext中,供项目中直接用变量引用版本号
def versions_properties_path = 'buildScripts/gradle/versions.properties'
def versions = new Properties()
versions.load(file(versions_properties_path).newReader())
versions.forEach { key, value ->
ext.set(key, value)
}
}
repositories {
if (!System.getenv().containsKey("DISABLE_TENCENT_MAVEN_MIRROR")) {
maven { url 'https://mirrors.tencent.com/nexus/repository/maven-public/' }
} else {
google()
jcenter()
}
}
dependencies {
classpath "com.android.tools.build:gradle:$build_gradle_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.tencent.shadow.coding:aar-to-jar-plugin'
classpath 'com.tencent.shadow.coding:common-jar-settings'
}
}
apply from: 'buildScripts/gradle/common.gradle'
apply from: "buildScripts/gradle/maven.gradle"