diff --git a/README-zh.md b/README-zh.md index 8c2dd27..ef6e1ee 100644 --- a/README-zh.md +++ b/README-zh.md @@ -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 { diff --git a/README.md b/README.md index 28f40fa..7d661bc 100644 --- a/README.md +++ b/README.md @@ -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 { diff --git a/build.gradle b/build.gradle index 9cf5733..b978208 100644 --- a/build.gradle +++ b/build.gradle @@ -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' diff --git a/component-plugin/build.gradle b/component-plugin/build.gradle index e9a554c..bfe0e67 100644 --- a/component-plugin/build.gradle +++ b/component-plugin/build.gradle @@ -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' //} diff --git a/settings.gradle b/settings.gradle index a1bd157..a862845 100644 --- a/settings.gradle +++ b/settings.gradle @@ -5,7 +5,7 @@ //include ':component-plugin' //调试插件 -includeBuild './component-plugin' +//includeBuild './component-plugin' include ':app', ':pins' include ':debugModule'