This repository was archived by the owner on Feb 1, 2024. It is now read-only.
File tree 6 files changed +16
-5
lines changed
6 files changed +16
-5
lines changed Original file line number Diff line number Diff line change @@ -109,4 +109,6 @@ methods.
109
109
110
110
## LICENSE
111
111
112
+ Warn: This project uses [ SLF4J] ( https://github.com/qos-ch/slf4j ) source code.
113
+
112
114
SEE [ LICENSE FILE] ( ./LICENSE ) AND [ SLF4J LICENSE] ( https://github.com/qos-ch/slf4j/blob/master/LICENSE.txt )
Original file line number Diff line number Diff line change 10
10
11
11
## 版本日志
12
12
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
+
13
21
### 1.6.0
14
22
15
23
- 优化 ` logger-console ` 日志输出样式
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ buildscript {
11
11
}
12
12
13
13
dependencies {
14
- classpath(" org.jetbrains.kotlin:kotlin-gradle-plugin:1.4 .21" )
14
+ classpath(" org.jetbrains.kotlin:kotlin-gradle-plugin:1.5 .21" )
15
15
}
16
16
}
17
17
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
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
Original file line number Diff line number Diff line change @@ -21,8 +21,9 @@ dependencies {
21
21
implementation(kotlin(" reflect" ))
22
22
implementation(kotlin(" stdlib" ))
23
23
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" )
26
27
testImplementation(" org.junit.jupiter:junit-jupiter:5.6.2" )
27
28
testImplementation(" org.junit.platform:junit-platform-launcher:1.6.2" )
28
29
}
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ compileJava.destinationDir = compileKotlin.destinationDir
20
20
dependencies {
21
21
implementation(kotlin(" reflect" ))
22
22
implementation(kotlin(" stdlib" ))
23
- implementation (" org.slf4j:slf4j-api:1.7.30 " )
23
+ api (" org.slf4j:slf4j-api:1.7.31 " )
24
24
compileOnly(project(" :logger-core" ))
25
25
testImplementation(project(" :logger-console" ))
26
26
testImplementation(" org.junit.jupiter:junit-jupiter:5.6.2" )
You can’t perform that action at this time.
0 commit comments