maven_templates.maven-failsafe-plugin.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of project-keeper-core Show documentation
Show all versions of project-keeper-core Show documentation
Project keeper is a tool that verifies and fixes project setups.
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>3.1.2</version> <configuration> <!-- Set the highest log level for coverage testing, so that we have a chance to reach branches <property> in the logging lambdas too. --> <argLine>-Djava.util.logging.config.file=src/test/resources/logging.properties ${argLine}</argLine> <systemPropertyVariables> <test.coverage>true</test.coverage> </systemPropertyVariables> <excludedGroups>${test.excludeTags}</excludedGroups> </configuration> <executions> <execution> <id>verify</id> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin>
© 2015 - 2024 Weber Informatics LLC | Privacy Policy