feat(test): 添加Spring Boot测试依赖
- 在pom.xml中添加spring-boot-starter-test依赖 - 配置测试依赖范围为test- 更新.gitignore忽略.claude/目录master
parent
8f25f1e7ba
commit
ffb4382070
|
|
@ -4,6 +4,7 @@ yarn-debug.log*
|
|||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
CLAUDE.md
|
||||
.claude/
|
||||
/target/
|
||||
!.mvn/wrapper/maven-wrapper.jar
|
||||
|
||||
|
|
|
|||
7
pom.xml
7
pom.xml
|
|
@ -260,6 +260,13 @@
|
|||
<artifactId>okhttp</artifactId>
|
||||
<version>4.12.0</version>
|
||||
</dependency>
|
||||
|
||||
<!-- spring boot test -->
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-test</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
|
|
|
|||
Loading…
Reference in New Issue