Skip to content
This repository was archived by the owner on Feb 1, 2024. It is now read-only.

Commit c7e6b7c

Browse files
ver.1.7.0
1 parent 51ea00e commit c7e6b7c

File tree

6 files changed

+16
-5
lines changed

6 files changed

+16
-5
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -109,4 +109,6 @@ methods.
109109

110110
## LICENSE
111111

112+
Warn: This project uses [SLF4J](https://github.com/qos-ch/slf4j) source code.
113+
112114
SEE [LICENSE FILE](./LICENSE) AND [SLF4J LICENSE](https://github.com/qos-ch/slf4j/blob/master/LICENSE.txt)

VERSION.md

+8
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,14 @@
1010

1111
## 版本日志
1212

13+
### 1.7.0
14+
15+
- 升级 `slf4j` 到 1.7.31
16+
- 升级 `kotlin` 到 1.5.21
17+
- 升级 `gradle` 到 6.8.3
18+
- 优化模块 `logger-slf4j` 逻辑,现在引入此模块后不会影响项目原 `slf4j` 版本了
19+
20+
1321
### 1.6.0
1422

1523
- 优化 `logger-console` 日志输出样式

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ buildscript {
1111
}
1212

1313
dependencies {
14-
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.21")
14+
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21")
1515
}
1616
}
1717

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-all.zip

logger-slf4j/build.gradle.kts

+3-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ dependencies {
2121
implementation(kotlin("reflect"))
2222
implementation(kotlin("stdlib"))
2323
implementation(project(":logger-core"))
24-
implementation("org.slf4j:slf4j-api:1.7.30")
25-
testImplementation("org.slf4j:slf4j-simple:1.7.30")
24+
compileOnly("org.slf4j:slf4j-api:1.7.31")
25+
testImplementation("org.slf4j:slf4j-api:1.7.31")
26+
testImplementation("org.slf4j:slf4j-simple:1.7.31")
2627
testImplementation("org.junit.jupiter:junit-jupiter:5.6.2")
2728
testImplementation("org.junit.platform:junit-platform-launcher:1.6.2")
2829
}

slf4j-over-logger4k/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ compileJava.destinationDir = compileKotlin.destinationDir
2020
dependencies {
2121
implementation(kotlin("reflect"))
2222
implementation(kotlin("stdlib"))
23-
implementation("org.slf4j:slf4j-api:1.7.30")
23+
api("org.slf4j:slf4j-api:1.7.31")
2424
compileOnly(project(":logger-core"))
2525
testImplementation(project(":logger-console"))
2626
testImplementation("org.junit.jupiter:junit-jupiter:5.6.2")

0 commit comments

Comments
 (0)