We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4770316 commit 43ed7c7Copy full SHA for 43ed7c7
pom.xml
@@ -646,6 +646,30 @@
646
</execution>
647
</executions>
648
</plugin>
649
+ <plugin>
650
+ <groupId>org.apache.maven.plugins</groupId>
651
+ <artifactId>maven-enforcer-plugin</artifactId>
652
+ <version>3.0.0-M3</version>
653
+ <executions>
654
+ <execution>
655
+ <id>enforce-jacoco-exist</id>
656
+ <phase>verify</phase>
657
+ <goals>
658
+ <goal>enforce</goal>
659
+ </goals>
660
+ <configuration>
661
+ <rules>
662
+ <requireFilesExist>
663
+ <files>
664
+ <file>${project.build.directory}/jacoco.exec</file>
665
+ </files>
666
+ </requireFilesExist>
667
+ </rules>
668
+ <fail>true</fail>
669
+ </configuration>
670
+ </execution>
671
+ </executions>
672
+ </plugin>
673
</plugins>
674
</build>
675
</profile>
0 commit comments