Skip to content

Commit ae11898

Browse files
committed
1、升级版本
1 parent d9c6126 commit ae11898

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
buildscript {
2424
dependencies {
2525
//必须项 👇
26-
classpath 'io.github.FlyJingFish.ModuleCommunication:module-communication-plugin:1.0.3'
26+
classpath 'io.github.FlyJingFish.ModuleCommunication:module-communication-plugin:1.0.4'
2727
}
2828
}
2929
```
@@ -130,7 +130,7 @@ b、如果 ```lib-login``` 也已经引入过 ```communication.export``` 插件
130130
```gradle
131131
dependencies {
132132
//必须项 👇(可以直接放在公共 module)
133-
implementation 'io.github.FlyJingFish.ModuleCommunication:module-communication-annotation:1.0.3'
133+
implementation 'io.github.FlyJingFish.ModuleCommunication:module-communication-annotation:1.0.4'
134134
}
135135
```
136136

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ DEVELOPER_ID=FlyJingFish
3434
DEVELOPER_NAME=FlyJingFish
3535
DEVELOPER_EMAIL=749617782@qq.com
3636

37-
TestVersion = 1.0.3
37+
TestVersion = 1.0.4
3838
SonatypeTestCode = 1332
3939
TestType = 0
4040

module-communication-plugin/src/main/kotlin/com/flyjingfish/module_communication_plugin/ExportTask.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ abstract class ExportTask : DefaultTask() {
5353
var packageName :String ? = null
5454
while (br.readLine().also { line = it } != null) {
5555
val code = line.trim { it <= ' ' }
56-
println(code)
56+
// println(code)
5757
if (code.startsWith("package")) {
58-
println(code.split(" ".toRegex())[1])
58+
// println(code.split(" ".toRegex())[1])
5959
packageName = code.split(" ")[1]
6060
break
6161
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.flyjingfish.module_communication_plugin
22

33
object LibVersion {
4-
const val version = "1.0.3"
4+
const val version = "1.0.4"
55
const val pathName = "helper"
66
}

module-communication-plugin/src/main/kotlin/com/flyjingfish/module_communication_plugin/PackageRecordUtils.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ object PackageRecordUtils {
1717
fun clear(moduleKey :String,buildFile : File){
1818
val lastRecordPackageSet = lastRecordPackageMap[moduleKey]
1919
lastRecordPackageSet?.let {
20-
println("lastRecordPackageSet-size="+it.size);
20+
// println("lastRecordPackageSet-size="+it.size);
2121

2222
for (packageName in it) {
2323
val packageFile = File(buildFile.absolutePath +"/"+ packageName.replace(".","/"))

version.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#Sat Jan 06 10:35:43 CST 2024
2-
PROJ_VERSION=1.0.3
1+
#Sun Jan 14 21:35:12 CST 2024
2+
PROJ_VERSION=1.0.4

0 commit comments

Comments
 (0)