依赖配置操作

This commit is contained in:
2025-09-15 14:35:19 +08:00
parent 5ba2edb3c7
commit 997391a8ae
2 changed files with 47 additions and 1 deletions

View File

@@ -8,5 +8,20 @@
<artifactId>maven-project01</artifactId>
<version>1.0-SNAPSHOT</version>
<!--引入依赖-->
<dependencies>
<!--logback-->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.3</version>
</dependency>
<!--junit-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>