Skip to content

Commit c27ba55

Browse files
committed
see 06/04 log
1 parent 88c6d76 commit c27ba55

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
.externalNativeBuild
1010
/apk
1111
*.phrof
12-
/maven
12+
/busMaven

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
#org.gradle.jvmargs=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005
2121

22-
org.gradle.jvmargs=-Xmx8192m -XX:MaxPermSize=2048m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
22+
org.gradle.jvmargs=-Xmx8192m -XX:MaxPermSize=2048m -XX:+HeapDumpOnOutOfMemoryError -XX:-UseGCOverheadLimit -Dfile.encoding=UTF-8
2323
org.gradle.daemon=true
2424
org.gradle.configureondemand=true
2525
org.gradle.parallel=true

gradle/config/config.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ gradle.ext {
2525
plugin_bintray : new DepConfig("com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4"),// 上传到 bintray
2626
plugin_traute : new DepConfig("tech.harmonysoft:traute-gradle:1.1.10"),// 注解转非空判断
2727

28-
plugin_bus : new DepConfig(false/*是否本地调试*/, "", "com.blankj:bus-gradle-plugin:1.8", true),
28+
plugin_bus : new DepConfig(true/*是否本地调试*/, "", "com.blankj:bus-gradle-plugin:1.8", true),
2929

3030
buildSrc : new DepConfig(":buildSrc"),
31-
bus_gradle_plugin : new DepConfig(":bus-gradle-plugin", false),
31+
bus_gradle_plugin : new DepConfig(":bus-gradle-plugin", true),
3232
launcher_app : new DepConfig(":launcher:app"),
3333
launcher_pkg : new DepConfig(":launcher:pkg"),
3434
lib_base : new DepConfig(":lib:base"),

gradle/config/configBuild.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ class CustomListener implements BuildListener {
7979
gradle.depConfig.each { name, config ->
8080
if (!config.isApply) return
8181
if (config.useLocal) {
82+
if (config.localPath == "") return
8283
gradle.ext.dep[name] = gradle.rootProject.findProject(config.localPath)
8384
} else {
8485
gradle.ext.dep[name] = config.remotePath

0 commit comments

Comments
 (0)