-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
build.gradle
52 lines (43 loc) · 1.35 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.2'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
classpath 'com.ofg:uptodate-gradle-plugin:1.6.2'
}
}
allprojects {
repositories {
google()
jcenter()
}
tasks.withType(JavaCompile) {
sourceCompatibility = rootProject.ext.javaVersion
targetCompatibility = rootProject.ext.javaVersion
}
tasks.withType(GroovyCompile) {
sourceCompatibility = rootProject.ext.javaVersion
targetCompatibility = rootProject.ext.javaVersion
}
}
ext {
javaVersion = JavaVersion.VERSION_1_8
GROUP = 'com.tencent.mm'
VERSION_NAME = "${ANDRESGUARD_VESSION}"
POM_PACKAGING = "pom"
POM_DESCRIPTION = "Android Resource Proguard Core Lib"
POM_URL = "https://github.com/shwenzhang/AndResGuard"
POM_SCM_URL = "https://github.com/shwenzhang/AndResGuard.git"
POM_ISSUE_URL = 'https://github.com/shwenzhang/AndResGuard/issues'
POM_LICENCE_NAME = "Apache-2.0"
POM_LICENCE_URL = " http://www.apache.org/licenses/"
POM_LICENCE_DIST = "repo"
POM_DEVELOPER_ID = "Tencent Wechat"
POM_DEVELOPER_NAME = "Tencent Wechat, Inc."
BINTRAY_LICENCE = ["Apache-2.0"]
BINTRAY_ORGANIZATION = "wemobiledev"
}