upadte 升级1.0.6 优化gradle增量编译
This commit is contained in:
@@ -17,6 +17,8 @@ README: [English](https://github.com/YummyLau/ComponentPlugin/blob/master/README
|
||||
* 2019/11/04 1.0.5
|
||||
* 支持模块内子工程pin
|
||||
* 提供更人性化的调试日志格式
|
||||
* 2019/12/09
|
||||
* 优化插件 gradle 增量编译
|
||||
|
||||
|
||||
### 为什么要使用
|
||||
@@ -80,7 +82,7 @@ buildscript {
|
||||
jcenter()
|
||||
}
|
||||
dependencies {
|
||||
classpath "com.effective.plugins:component:1.0.4
|
||||
classpath "com.effective.plugins:component:1.0.6
|
||||
}
|
||||
}
|
||||
allprojects {
|
||||
|
||||
@@ -17,6 +17,8 @@ From the very beginning, I learned that "WeChat's Modular Architecture Reconstru
|
||||
* 2019/11/04 1.0.5
|
||||
* Support sub-project pin in the module
|
||||
* Provide a more user-friendly debug log format
|
||||
* 2019/12/09
|
||||
* Optimization plugin gradle incremental compilation
|
||||
|
||||
### Why use it
|
||||
|
||||
@@ -79,7 +81,7 @@ buildscript {
|
||||
jcenter()
|
||||
}
|
||||
dependencies {
|
||||
classpath "com.effective.plugins:component:1.0.4
|
||||
classpath "com.effective.plugins:component:1.0.6
|
||||
}
|
||||
}
|
||||
allprojects {
|
||||
|
||||
@@ -2,7 +2,7 @@ apply from: "./gradleScript/config.gradle"
|
||||
|
||||
buildscript {
|
||||
ext.kotlin_version = '1.3.50'
|
||||
ext.component_version = '1.0.5'
|
||||
ext.component_version = '1.0.6'
|
||||
|
||||
repositories {
|
||||
google()
|
||||
@@ -11,10 +11,10 @@ buildscript {
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:3.1.0'
|
||||
// classpath "com.effective.plugins:component:$component_version"
|
||||
classpath "com.effective.plugins:component:$component_version"
|
||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||
//调试需要
|
||||
classpath "com.effective.plugins:component-plugin"
|
||||
// classpath "com.effective.plugins:component-plugin"
|
||||
|
||||
//发布需要
|
||||
classpath 'com.novoda:bintray-release:0.9.1'
|
||||
|
||||
@@ -4,7 +4,7 @@ apply plugin: 'maven'
|
||||
|
||||
group = 'com.effective.plugins'
|
||||
archivesBaseName = 'component'
|
||||
version = '1.0.5'
|
||||
version = '1.0.6'
|
||||
|
||||
//设置本地发布路径
|
||||
uploadArchives {
|
||||
@@ -47,7 +47,7 @@ repositories {
|
||||
// userOrg = 'yummylau'
|
||||
// groupId = 'com.effective.plugins'
|
||||
// artifactId = 'component'
|
||||
// publishVersion = '1.0.5'
|
||||
// publishVersion = '1.0.6'
|
||||
// desc = 'Android component plugin'
|
||||
// website = 'https://github.com/YummyLau/ComponentPlugin'
|
||||
//}
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
//include ':component-plugin'
|
||||
|
||||
//调试插件
|
||||
includeBuild './component-plugin'
|
||||
//includeBuild './component-plugin'
|
||||
|
||||
include ':app', ':pins'
|
||||
include ':debugModule'
|
||||
|
||||
Reference in New Issue
Block a user