🚨chore: jacoco 테스트 코드 커버리지 라이브러리 추가

- 참고 차원에서 추가합니다
- 관심 있는 사람은 참고하세용
This commit is contained in:
yoosangwook 2024-12-10 11:25:30 +09:00
parent 7bc0fd1384
commit 3620da60df

27
pom.xml
View File

@ -207,7 +207,34 @@
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.12</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>