-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
82 lines (74 loc) · 2.72 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.3.41'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
ext.userHome = System.getProperty("user.home")
allprojects {
def bintray_user = "hglf"
def Repository = "maven"
repositories {
google()
jcenter()
maven{
url uri("${userHome}/repo")//本地仓库 debug use
}
maven {
url "https://dl.bintray.com/$bintray_user/$Repository"
}
}
}
subprojects {
configurations.all {
resolutionStrategy {
force "com.android.support:recyclerview-v7:$SUPPORT_VERSION"
force "com.android.support:appcompat-v7:$SUPPORT_VERSION"
force "com.android.support:design:$SUPPORT_VERSION"
force "com.android.support:support-vector-drawable:$SUPPORT_VERSION"
force "com.android.support:animated-vector-drawable:$SUPPORT_VERSION"
force "com.android.support:support-compat:$SUPPORT_VERSION"
}
}
if ("rxfetch" == it.name) {
group = 'github.hotstu.labo'//发布到 bintray 的groupId号
version = "1.0.2" // 发布到 bintray 的版本号
}
if ("tool" == it.name) {
group = 'github.hotstu.labo'//发布到 bintray 的groupId号
version = "1.0.0" // 发布到 bintray 的版本号
}
if ("jsbridge" == it.name) {
group = 'github.hotstu.labo'//发布到 bintray 的groupId号
version = "1.0.0" // 发布到 bintray 的版本号
}
if ("nott" == it.name) {
group = 'github.hotstu.labo'//发布到 bintray 的groupId号
version = "1.0.0" // 发布到 bintray 的版本号
}
if ("sec" == it.name) {
group = 'github.hotstu.labo'//发布到 bintray 的groupId号
version = "1.0.0" // 发布到 bintray 的版本号
}
if ("noo" == it.name) {
group = 'github.hotstu.labo'//发布到 bintray 的groupId号
version = "1.0.0" // 发布到 bintray 的版本号
}
// if ("labo-listscreen" == it.name) {
// group = 'github.hotstu.labo'//发布到 bintray 的groupId号
// version = "0.0.1" // 发布到 bintray 的版本号
// }
}
task clean(type: Delete) {
delete rootProject.buildDir
}