forked from yanzhenjie/AndServer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.gradle
More file actions
64 lines (51 loc) · 2.02 KB
/
config.gradle
File metadata and controls
64 lines (51 loc) · 2.02 KB
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
56
57
58
59
60
61
62
63
64
ext {
plugins = [
java : 'java',
library : 'com.android.library',
application: 'com.android.application',
maven : 'com.github.dcendents.android-maven',
bintray : 'com.jfrog.bintray'
]
android = [
applicationId : "com.yanzhenjie.andserver.sample",
compileSdkVersion : 25,
buildToolsVersion : "25.0.3",
libraryMinSdkVersion : 9,
libraryTargetSdkVersion: 25,
sampleMinSdkVersion : 11,
sampleTargetSdkVersion : 22,
versionCode : 12,
versionName : "1.1.0",
]
bintray = [
// library
version : "1.1.0",
siteUrl : 'https://github.com/yanzhenjie/AndServer',
gitUrl : 'git@github.com:yanzhenjie/AndServer.git',
group : "com.yanzhenjie",
// project
packaging : 'aar',
name : 'AndServer',
description : 'Android web server',
// project.license
licenseName : 'The Apache Software License, Version 2.0',
licenseUrl : 'http://www.apache.org/licenses/LICENSE-2.0.txt',
// project.developers
developerId : 'yanzhenjie',
developerName : 'yanzhenjie',
developerEmail: 'smallajax@foxmail.com',
// bintray
binrayLibrary : "andserver",
bintrayRepo : "maven",
bintrayUser : 'yolanda',
bintrayLicense: "Apache-2.0"
]
dependencies = [
httpcore : "com.yanzhenjie.apache:httpcore:4.4.8",
fileupload: "com.yanzhenjie.apache:fileupload:1.3.3",
andserver : 'com.yanzhenjie:andserver:1.1.0',
appCompat : 'com.android.support:appcompat-v7:25.3.1',
design : 'com.android.support:design:25.3.1',
loading : 'com.yanzhenjie:loading:1.0.0'
]
}