Skip to content

Commit

Permalink
add exclusions
Browse files Browse the repository at this point in the history
  • Loading branch information
melazaar committed Dec 5, 2024
1 parent 207e219 commit 4b56328
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,13 @@
<sonar.coverage.jacoco.xmlReportPaths>
../antares-datamanager-back/target/site/jacoco/jacoco.xml
</sonar.coverage.jacoco.xmlReportPaths>
<sonar.exclusions>
**com/rte_france/plasma/pu/pu_dashboard_api/repository/model/**,
**com/rte_france/antares/datamanager_back/exception/**,
**com/rte_france/antares/datamanager_back/configuration/**,
**com/rte_france/antares/datamanager_back/repository/model/**,
**com/rte_france/antares/datamanager_back/dto/**,
</sonar.exclusions>
</properties>
<dependencies>
<dependency>
Expand Down Expand Up @@ -180,6 +187,14 @@
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.10</version>
<configuration>
<excludes>
<exclude>com/rte_france/antares/datamanager_back/exception/**</exclude>
<exclude>com/rte_france/antares/datamanager_back/configuration/**</exclude>
<exclude>com/rte_france/antares/datamanager_back/repository/model/**</exclude>
<exclude>com/rte_france/antares/datamanager_back/dto/**</exclude>
</excludes>
</configuration>
<executions>
<execution>
<goals>
Expand Down

0 comments on commit 4b56328

Please sign in to comment.