|
202 | 202 | </plugin> |
203 | 203 | </plugins> |
204 | 204 | </build> |
205 | | - |
206 | | - <profiles> |
207 | | - <profile> |
208 | | - <id>jolla-dev</id> |
209 | | - <build> |
210 | | - <plugins> |
211 | | -<!-- Surefire--> |
212 | | - <plugin> |
213 | | - <artifactId>maven-surefire-plugin</artifactId> |
214 | | - <configuration> |
215 | | - <includes> |
216 | | - <include>com/thealgorithms/datastructures/trees/**/*.java</include> |
217 | | - </includes> |
218 | | - </configuration> |
219 | | - </plugin> |
220 | | - |
221 | | -<!-- Pitest--> |
222 | | - <plugin> |
223 | | - <groupId>org.pitest</groupId> |
224 | | - <artifactId>pitest-maven</artifactId> |
225 | | - <configuration> |
226 | | - <targetClasses>com.thealgorithms.datastructures.trees.GenericTree</targetClasses> |
227 | | - <targetTests>com.thealgorithms.datastructures.trees.GenericTreeTest</targetTests> |
228 | | - </configuration> |
229 | | - <executions> |
230 | | - <execution> |
231 | | - <id>pitest</id> |
232 | | - <phase>verify</phase><!-- Runs only during verify--> |
233 | | - <goals> |
234 | | - <goal>mutationCoverage</goal> |
235 | | - </goals> |
236 | | - </execution> |
237 | | - </executions> |
238 | | - </plugin> |
239 | | - |
240 | | -<!-- JaCoCo--> |
241 | | - <plugin> |
242 | | - <groupId>org.jacoco</groupId> |
243 | | - <artifactId>jacoco-maven-plugin</artifactId> |
244 | | - <executions> |
245 | | - <execution> |
246 | | - <goals> |
247 | | - <goal>prepare-agent</goal> |
248 | | - </goals> |
249 | | - </execution> |
250 | | - <execution> |
251 | | - <id>generate-code-coverage-report</id> |
252 | | - <phase>verify</phase><!-- Runs only during verify--> |
253 | | - <goals> |
254 | | - <goal>report</goal> |
255 | | - </goals> |
256 | | - </execution> |
257 | | - </executions> |
258 | | - </plugin> |
259 | | - </plugins> |
260 | | - </build> |
261 | | - </profile> |
262 | | - </profiles> |
263 | 205 | </project> |