Skip to content

Commit 5bb9ba8

Browse files
committed
add lombok slf4j
1 parent f3d616c commit 5bb9ba8

3 files changed

Lines changed: 16 additions & 2 deletions

File tree

.idea/compiler.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

java_test/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@
2121
<groupId>org.projectlombok</groupId>
2222
<artifactId>lombok</artifactId>
2323
</dependency>
24+
<dependency>
25+
<groupId>ch.qos.logback</groupId>
26+
<artifactId>logback-classic</artifactId>
27+
</dependency>
2428
</dependencies>
2529

2630
</project>
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
package com.yiyun;
2+
3+
import lombok.extern.slf4j.Slf4j;
4+
5+
@Slf4j
6+
public class LombokTest {
7+
public static void main(String[] args) {
8+
log.info("yi-yun Test...");
9+
}
10+
}

0 commit comments

Comments
 (0)