forked from yanzhenjie/AndServer
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.gradle
More file actions
57 lines (45 loc) · 2.52 KB
/
config.gradle
File metadata and controls
57 lines (45 loc) · 2.52 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
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 : 28,
buildToolsVersion : '28.0.3',
libraryMinSdkVersion : 9,
libraryTargetSdkVersion: 28,
sampleMinSdkVersion : 14,
sampleTargetSdkVersion : 22,
versionCode : 22,
versionName : '2.0.5',]
bintray = [version : '2.0.5',
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 : "",
bintrayRepo : "maven",
bintrayUser : 'yolanda',
bintrayLicense: "Apache-2.0"]
dependencies = [autoService : 'com.google.auto.service:auto-service:1.0-rc5',
javaPoet : 'com.squareup:javapoet:1.11.1',
activation : 'javax.activation:activation:1.1.1',
commonsLang : 'org.apache.commons:commons-lang3:3.8',
commonsCollections: 'org.apache.commons:commons-collections4:4.3',
httpcore : "com.yanzhenjie.apache:httpcore:4.4.11",
fileupload : "com.yanzhenjie.apache:fileupload:1.4",
annotation : 'androidx.annotation:annotation:1.0.2',
appCompat : 'androidx.appcompat:appcompat:1.0.2',
design : 'com.google.android.material:material:1.0.0',
loading : 'com.yanzhenjie:loading:1.0.0',
json : 'com.alibaba:fastjson:1.1.70.android']
}