Skip to content

Commit 21098ee

Browse files
committed
需改jcenter配置
1 parent 4ca1286 commit 21098ee

File tree

6 files changed

+52
-45
lines changed

6 files changed

+52
-45
lines changed

build.gradle

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ buildscript {
1010
google()
1111
}
1212
dependencies {
13-
classpath 'com.android.tools.build:gradle:3.2.0'
13+
classpath 'com.android.tools.build:gradle:3.0.1'
14+
15+
classpath 'com.novoda:bintray-release:0.8.1'
1416
// classpath "net.ltgt.gradle:gradle-errorprone-plugin:0.0.9"
1517
// NOTE: Do not place your application dependencies here; they belong
1618
// in the individual module build.gradle files

mvccoolhelper/build.gradle

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
apply plugin: 'com.android.library'
2+
apply plugin: 'com.novoda.bintray-release'
23
apply from: rootProject.file("buildsystem/library.gradle")
34

45
dependencies {
@@ -8,12 +9,12 @@ dependencies {
89
implementation project(':mvchelper_library')
910
}
1011

11-
////添加
12-
//publish {
13-
// userOrg = 'luckyjayce'//bintray.com用户名
14-
// groupId = 'com.shizhefei'//jcenter上的路径
15-
// artifactId = 'MVCHelper-CoolRefresh'//项目名称
16-
// publishVersion = rootProject.ext.VERSION_NAME//版本号
17-
// desc = '实现下拉刷新,滚动底部自动加载更多,分页加载,自动切换显示网络失败布局,暂无数据布局,支持任意view,支持切换主流下拉刷新框架,真正的android MVC架构,listview,RecyclerView,refresh,loadmore'//描述,不重要
18-
// website = 'https://github.com/LuckyJayce/MVCHelper'//网站,不重要;尽量模拟github上的地址,例如我这样的;当然你有地址最好了
19-
//}
12+
//添加
13+
publish {
14+
userOrg = 'luckyjayce'//bintray.com用户名
15+
groupId = 'com.shizhefei'//jcenter上的路径
16+
artifactId = 'MVCHelper-CoolRefresh'//项目名称
17+
publishVersion = rootProject.ext.VERSION_NAME//版本号
18+
desc = '实现下拉刷新,滚动底部自动加载更多,分页加载,自动切换显示网络失败布局,暂无数据布局,支持任意view,支持切换主流下拉刷新框架,真正的android MVC架构,listview,RecyclerView,refresh,loadmore'//描述,不重要
19+
website = 'https://github.com/LuckyJayce/MVCHelper'//网站,不重要;尽量模拟github上的地址,例如我这样的;当然你有地址最好了
20+
}

mvchelper_library/build.gradle

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
apply plugin: 'com.android.library'
2+
apply plugin: 'com.novoda.bintray-release'
23
apply from: rootProject.file("buildsystem/library.gradle")
34

45
dependencies {
@@ -8,11 +9,11 @@ dependencies {
89
}
910

1011
////添加
11-
//publish {
12-
// userOrg = 'luckyjayce'//bintray.com用户名
13-
// groupId = 'com.shizhefei'//jcenter上的路径
14-
// artifactId = 'MVCHelper-Library'//项目名称
15-
// publishVersion = rootProject.ext.VERSION_NAME//版本号
16-
// desc = '实现下拉刷新,滚动底部自动加载更多,分页加载,自动切换显示网络失败布局,暂无数据布局,支持任意view,支持切换主流下拉刷新框架,真正的android MVC架构,listview,RecyclerView,refresh,loadmore'//描述,不重要
17-
// website = 'https://github.com/LuckyJayce/MVCHelper'//网站,不重要;尽量模拟github上的地址,例如我这样的;当然你有地址最好了
18-
//}
12+
publish {
13+
userOrg = 'luckyjayce'//bintray.com用户名
14+
groupId = 'com.shizhefei'//jcenter上的路径
15+
artifactId = 'MVCHelper-Library'//项目名称
16+
publishVersion = rootProject.ext.VERSION_NAME//版本号
17+
desc = '实现下拉刷新,滚动底部自动加载更多,分页加载,自动切换显示网络失败布局,暂无数据布局,支持任意view,支持切换主流下拉刷新框架,真正的android MVC架构,listview,RecyclerView,refresh,loadmore'//描述,不重要
18+
website = 'https://github.com/LuckyJayce/MVCHelper'//网站,不重要;尽量模拟github上的地址,例如我这样的;当然你有地址最好了
19+
}

mvcpullrefshhelper/build.gradle

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
apply plugin: 'com.android.library'
2+
apply plugin: 'com.novoda.bintray-release'
23
apply from: rootProject.file("buildsystem/library.gradle")
34

45
dependencies {
@@ -10,12 +11,12 @@ dependencies {
1011
implementation project(':mvchelper_library')
1112
}
1213

13-
////添加
14-
//publish {
15-
// userOrg = 'luckyjayce'//bintray.com用户名
16-
// groupId = 'com.shizhefei'//jcenter上的路径
17-
// artifactId = 'MVCHelper-Pullrefresh'//项目名称
18-
// publishVersion = rootProject.ext.VERSION_NAME//版本号
19-
// desc = '实现下拉刷新,滚动底部自动加载更多,分页加载,自动切换显示网络失败布局,暂无数据布局,支持任意view,支持切换主流下拉刷新框架,真正的android MVC架构,listview,RecyclerView,refresh,loadmore'//描述,不重要
20-
// website = 'https://github.com/LuckyJayce/MVCHelper'//网站,不重要;尽量模拟github上的地址,例如我这样的;当然你有地址最好了
21-
//}
14+
//添加
15+
publish {
16+
userOrg = 'luckyjayce'//bintray.com用户名
17+
groupId = 'com.shizhefei'//jcenter上的路径
18+
artifactId = 'MVCHelper-Pullrefresh'//项目名称
19+
publishVersion = rootProject.ext.VERSION_NAME//版本号
20+
desc = '实现下拉刷新,滚动底部自动加载更多,分页加载,自动切换显示网络失败布局,暂无数据布局,支持任意view,支持切换主流下拉刷新框架,真正的android MVC架构,listview,RecyclerView,refresh,loadmore'//描述,不重要
21+
website = 'https://github.com/LuckyJayce/MVCHelper'//网站,不重要;尽量模拟github上的地址,例如我这样的;当然你有地址最好了
22+
}

mvcswiperefreshhelper/build.gradle

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
apply plugin: 'com.android.library'
2+
apply plugin: 'com.novoda.bintray-release'
23
apply from: rootProject.file("buildsystem/library.gradle")
34

45
dependencies {
@@ -9,12 +10,12 @@ dependencies {
910
implementation project(':mvchelper_library')
1011
}
1112

12-
////添加
13-
//publish {
14-
// userOrg = 'luckyjayce'//bintray.com用户名
15-
// groupId = 'com.shizhefei'//jcenter上的路径
16-
// artifactId = 'MVCHelper-SwipeRefresh'//项目名称
17-
// publishVersion = rootProject.ext.VERSION_NAME//版本号
18-
// desc = '实现下拉刷新,滚动底部自动加载更多,分页加载,自动切换显示网络失败布局,暂无数据布局,支持任意view,支持切换主流下拉刷新框架,真正的android MVC架构,listview,RecyclerView,refresh,loadmore'//描述,不重要
19-
// website = 'https://github.com/LuckyJayce/MVCHelper'//网站,不重要;尽量模拟github上的地址,例如我这样的;当然你有地址最好了
20-
//}
13+
//添加
14+
publish {
15+
userOrg = 'luckyjayce'//bintray.com用户名
16+
groupId = 'com.shizhefei'//jcenter上的路径
17+
artifactId = 'MVCHelper-SwipeRefresh'//项目名称
18+
publishVersion = rootProject.ext.VERSION_NAME//版本号
19+
desc = '实现下拉刷新,滚动底部自动加载更多,分页加载,自动切换显示网络失败布局,暂无数据布局,支持任意view,支持切换主流下拉刷新框架,真正的android MVC架构,listview,RecyclerView,refresh,loadmore'//描述,不重要
20+
website = 'https://github.com/LuckyJayce/MVCHelper'//网站,不重要;尽量模拟github上的地址,例如我这样的;当然你有地址最好了
21+
}

mvcultrahelper/build.gradle

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
apply plugin: 'com.android.library'
2+
apply plugin: 'com.novoda.bintray-release'
23
apply from: rootProject.file("buildsystem/library.gradle")
34

45
dependencies {
@@ -10,12 +11,12 @@ dependencies {
1011
implementation project(':mvchelper_library')
1112
}
1213

13-
////添加
14-
//publish {
15-
// userOrg = 'luckyjayce'//bintray.com用户名
16-
// groupId = 'com.shizhefei'//jcenter上的路径
17-
// artifactId = 'MVCHelper-UltraRefresh'//项目名称
18-
// publishVersion = rootProject.ext.VERSION_NAME//版本号
19-
// desc = '实现下拉刷新,滚动底部自动加载更多,分页加载,自动切换显示网络失败布局,暂无数据布局,支持任意view,支持切换主流下拉刷新框架,真正的android MVC架构,listview,RecyclerView,refresh,loadmore'//描述,不重要
20-
// website = 'https://github.com/LuckyJayce/MVCHelper'//网站,不重要;尽量模拟github上的地址,例如我这样的;当然你有地址最好了
21-
//}
14+
//添加
15+
publish {
16+
userOrg = 'luckyjayce'//bintray.com用户名
17+
groupId = 'com.shizhefei'//jcenter上的路径
18+
artifactId = 'MVCHelper-UltraRefresh'//项目名称
19+
publishVersion = rootProject.ext.VERSION_NAME//版本号
20+
desc = '实现下拉刷新,滚动底部自动加载更多,分页加载,自动切换显示网络失败布局,暂无数据布局,支持任意view,支持切换主流下拉刷新框架,真正的android MVC架构,listview,RecyclerView,refresh,loadmore'//描述,不重要
21+
website = 'https://github.com/LuckyJayce/MVCHelper'//网站,不重要;尽量模拟github上的地址,例如我这样的;当然你有地址最好了
22+
}

0 commit comments

Comments
 (0)