Created
June 25, 2024 19:14
-
-
Save zendar426/f1ea3f960f9e7b98ff75cba94289497a to your computer and use it in GitHub Desktop.
[Plugin for sonar covegare] este cp se pega debajo de las dependencias, en la seccion de <plugins> #Java #Sonarqube
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<plugin> | |
<groupId>org.jacoco</groupId> | |
<artifactId>jacoco-maven-plugin</artifactId> | |
<version>0.8.7</version> | |
<executions> | |
<execution> | |
<id>prepare-agent</id> | |
<goals> | |
<goal>prepare-agent</goal> | |
</goals> | |
</execution> | |
<execution> | |
<id>report</id> | |
<goals> | |
<goal>report</goal> | |
</goals> | |
<configuration> | |
<formats> | |
<format>XML</format> | |
</formats> | |
</configuration> | |
</execution> | |
</executions> | |
</plugin> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment