fluentlenium-integration-tests
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.fluentlenium</groupId> <artifactId>fluentlenium-integration-tests</artifactId> <version>6.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.fluentlenium</groupId> <artifactId>fluentlenium-parent</artifactId> <version>6.0.0</version> </parent> <groupId>io.fluentlenium</groupId> <artifactId>fluentlenium-integration-tests</artifactId> <version>6.0.0</version> <name>FluentLenium Integration Tests</name> <licenses> <license> <name>Apache 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <properties> <maven.version.rules>file:///${project.basedir}/../maven-version-rules.xml</maven.version.rules> </properties> <dependencies> <dependency> <groupId>io.fluentlenium</groupId> <artifactId>fluentlenium-core</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.fluentlenium</groupId> <artifactId>fluentlenium-junit-jupiter</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.fluentlenium</groupId> <artifactId>fluentlenium-assertj</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.github.stephenc.jcip</groupId> <artifactId>jcip-annotations</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-chrome-driver</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.github.bonigarcia</groupId> <artifactId>webdrivermanager</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>${seleniumDevtools.artifactId}</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jul-to-slf4j</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkCount>2</forkCount> <rerunFailingTestsCount>2</rerunFailingTestsCount> <systemPropertyVariables> <fluentlenium.capabilities>${fluentlenium.capabilities.default}</fluentlenium.capabilities> <java.util.logging.config.file>${project.basedir}/src/test/resources/logging.properties</java.util.logging.config.file> <webdriver.chrome.silentOutput>true</webdriver.chrome.silentOutput> </systemPropertyVariables> </configuration> </plugin> </plugins> </build> </project>