Skip to content

Commit 9b9acd0

Browse files
Added test report
1 parent dc1c024 commit 9b9acd0

File tree

3 files changed

+49
-1
lines changed

3 files changed

+49
-1
lines changed

notification-service/pom.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,21 @@
8989
<target>21</target>
9090
</configuration>
9191
</plugin>
92+
93+
<plugin>
94+
<groupId>org.jacoco</groupId>
95+
<artifactId>jacoco-maven-plugin</artifactId>
96+
<version>0.8.11</version>
97+
<executions>
98+
<execution>
99+
<id>report</id>
100+
<phase>verify</phase>
101+
<goals>
102+
<goal>report</goal>
103+
</goals>
104+
</execution>
105+
</executions>
106+
</plugin>
92107
</plugins>
93108
</build>
94109
</project>

pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,26 @@
7272
</includes>
7373
</configuration>
7474
</plugin>
75+
<plugin>
76+
<groupId>org.jacoco</groupId>
77+
<artifactId>jacoco-maven-plugin</artifactId>
78+
<version>0.8.11</version>
79+
<executions>
80+
<execution>
81+
<id>prepare-agent</id>
82+
<goals>
83+
<goal>prepare-agent</goal>
84+
</goals>
85+
</execution>
86+
<execution>
87+
<id>report-aggregate</id>
88+
<phase>verify</phase>
89+
<goals>
90+
<goal>report-aggregate</goal>
91+
</goals>
92+
</execution>
93+
</executions>
94+
</plugin>
7595
<plugin>
7696
<groupId>org.apache.maven.plugins</groupId>
7797
<artifactId>maven-checkstyle-plugin</artifactId>

user-service/pom.xml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,20 @@
111111
</compilerArgs>
112112
</configuration>
113113
</plugin>
114-
114+
<plugin>
115+
<groupId>org.jacoco</groupId>
116+
<artifactId>jacoco-maven-plugin</artifactId>
117+
<version>0.8.11</version>
118+
<executions>
119+
<execution>
120+
<id>report</id>
121+
<phase>verify</phase>
122+
<goals>
123+
<goal>report</goal>
124+
</goals>
125+
</execution>
126+
</executions>
127+
</plugin>
115128
</plugins>
116129
</build>
117130
</project>

0 commit comments

Comments
 (0)