forked from yanzhenjie/AndServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.gradle
59 lines (47 loc) · 2.72 KB
/
config.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
56
57
58
59
ext {
plugins = [java : 'java',
javaLibrary : 'java-library',
android : 'com.android.application',
androidLibrary: 'com.android.library',
maven : 'com.github.dcendents.android-maven',
bintray : 'com.jfrog.bintray']
android = [applicationId : 'com.yanzhenjie.andserver.sample',
compileSdkVersion : 27,
buildToolsVersion : '27.0.3',
libraryMinSdkVersion : 9,
libraryTargetSdkVersion: 27,
sampleMinSdkVersion : 14,
sampleTargetSdkVersion : 22,
versionCode : 21,
versionName : '2.0.4',]
bintray = [version : '2.0.4',
group : 'com.yanzhenjie.andserver',
siteUrl : 'https://github.com/yanzhenjie/AndServer',
gitUrl : 'git@github.com:yanzhenjie/AndServer.git',
packaging : 'aar',
name : 'AndServer',
description : 'Android web server',
licenseName : 'The Apache Software License, Version 2.0',
licenseUrl : 'http://www.apache.org/licenses/LICENSE-2.0.txt',
developerId : 'yanzhenjie',
developerName : 'yanzhenjie',
developerEmail: 'smallajax@foxmail.com',
binrayLibrary : "andserver-api",
bintrayRepo : "maven",
bintrayUser : 'yolanda',
bintrayLicense: "Apache-2.0"]
dependencies = [autoService : 'com.google.auto.service:auto-service:1.0-rc4',
javaPoet : 'com.squareup:javapoet:1.11.1',
commonsLang : 'org.apache.commons:commons-lang3:3.8.1',
commonsCollections : 'org.apache.commons:commons-collections4:4.2',
httpcore : "com.yanzhenjie.apache:httpcore:4.4.10",
fileupload : "com.yanzhenjie.apache:fileupload:1.4",
annotation : 'com.android.support:support-annotations:27.1.1',
andserverAnnotation: 'com.yanzhenjie.andserver:annotation:2.0.4',
andserverApi : 'com.yanzhenjie.andserver:api:2.0.4',
andserverProcessor : 'com.yanzhenjie.andserver:processor:2.0.4',
appCompat : 'com.android.support:appcompat-v7:27.1.1',
design : 'com.android.support:design:27.1.1',
loading : 'com.yanzhenjie:loading:1.0.0',
json : 'com.alibaba:fastjson:1.1.68.android']
}