forked from hsiafan/apk-parser
-
Notifications
You must be signed in to change notification settings - Fork 9
/
build.gradle
43 lines (35 loc) · 1.13 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenLocal()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6'
classpath "com.github.dcendents:android-maven-gradle-plugin:1.4.1"
}
}
allprojects {
repositories {
mavenLocal()
jcenter()
}
}
ext {
javaVersion = JavaVersion.VERSION_1_7
GROUP = 'com.tencent.mm'
VERSION_NAME = "1.2.3"
POM_PACKAGING = "pom"
POM_DESCRIPTION= "apk-parser-lib"
POM_URL = "https://github.com/shwenzhang/apk-parser"
POM_SCM_URL = "https://github.com/shwenzhang/apk-parser.git"
POM_ISSUE_URL = 'https://github.com/shwenzhang/apk-parser/issues'
POM_LICENCE_NAME = "BSD License"
POM_LICENCE_URL = "https://opensource.org/licenses/BSD-3-Clause"
POM_LICENCE_DIST = "repo"
POM_DEVELOPER_ID="Tencent Wechat"
POM_DEVELOPER_NAME="Tencent Wechat, Inc."
BINTRAY_LICENCE= ['BSD 3-Clause']
BINTRAY_ORGANIZATION = "wemobiledev"
}