aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2023-01-14 15:42:03 +0300
committerGravatar Vitaly Takmazov2023-01-14 15:42:03 +0300
commit23a41aebadbe13e8992856c6be84ce6d01de0175 (patch)
tree28ccc1446a8d4c1b9141454ea74703e65a9bff22 /pom.xml
parent834fef2a7794d769144c7c087a8b1fa0a2a9bb21 (diff)
Configure test coverage reports
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml23
1 files changed, 23 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 2c828b45..cb76d74f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -44,6 +44,10 @@
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-validation</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
@@ -388,6 +392,25 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.jacoco</groupId>
+ <artifactId>jacoco-maven-plugin</artifactId>
+ <version>0.8.8</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>prepare-agent</goal>
+ </goals>
+ </execution>
+ <execution>
+ <id>report</id>
+ <phase>prepare-package</phase>
+ <goals>
+ <goal>report</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
<profiles>