All Downloads are FREE. Search and download functionalities are using the official Maven repository.

maven_templates.maven-failsafe-plugin.xml Maven / Gradle / Ivy

There is a newer version: 4.4.0
Show newest version
<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