forked from Tencent/VasDolly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
57 lines (45 loc) · 1.32 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
49
50
51
52
53
54
55
// Top-level build file where you can add configuration options common to all sub-projects/modules.
ext {
minSdkVersion = 14
compileSdkVersion = 26
targetSdkVersion = compileSdkVersion
buildToolsVersion = '26.0.2'
javaVersion = JavaVersion.VERSION_1_7
GROUP = 'com.leon.channel'
VERSION = '1.1.7'
//POM_PACKAGING = "pom"
POM_DESCRIPTION = "VasDolly"
POM_URL = "https://github.com/Tencent/VasDolly"
POM_SCM_URL = "https://github.com/Tencent/VasDolly.git"
POM_ISSUE_URL = 'https://github.com/Tencent/VasDolly/issues'
POM_LICENCE_NAME = "BSD License"
POM_LICENCE_URL = "https://opensource.org/licenses/BSD-3-Clause"
POM_LICENCE_DIST = "repo"
BINTRAY_LICENCE = ['BSD 3-Clause']
}
buildscript {
repositories {
maven {
url "file:///Users/leontli/localMaven"
}
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0'
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3"
classpath "com.github.dcendents:android-maven-gradle-plugin:1.5"
}
}
allprojects {
repositories {
maven {
url "file:///Users/leontli/localMaven"
}
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}