Selenium4-Junit5
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>co.verisoft</groupId> <artifactId>Selenium4-Junit5</artifactId> <version>3.0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>co.verisoft</groupId> <artifactId>Selenium4-Junit5</artifactId> <packaging>jar</packaging> <version>3.0.1</version> <name>${project.groupId}:${project.artifactId}</name> <description>VeriSoft framework for testing web and mobile applications. Selenium Module</description> <url>https://bitbucket.org/nir_gallner/selenium4-junit5</url> <developers> <developer> <id>nirg</id> <name>Nir Gallner</name> <email>nir@verisoft.co</email> <organization>VeriSoft</organization> <organizationUrl>http://www.verisoft.co</organizationUrl> </developer> </developers> <licenses> <license> <name>Apache 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <scm> <connection>scm:git:git://bitbucket.org/nir_gallner/selenium4-junit5.git</connection> <developerConnection>scm:git:ssh://bitbucket.org:nir_gallner/selenium4-junit5.git</developerConnection> <url>https://bitbucket.org/nir_gallner/selenium4-junit5/src</url> </scm> <properties> <!-- Dependencies --> <slf4j.version>2.0.13</slf4j.version> <aspectj.version>1.9.22</aspectj.version> <maven.compiler.version>3.10.1</maven.compiler.version> <lombok.version>1.18.32</lombok.version> <spring.version>6.2.2</spring.version> <verisoft.test.api.version>3.0.1</verisoft.test.api.version> <!-- Maven plugins versions--> <maven.source.plugin.version>3.2.1</maven.source.plugin.version> <maven.surefire.plugin.version>3.1.0</maven.surefire.plugin.version> <!--after change to 3.0.0-M5 break --> <maven.javadoc.plugin.version>3.4.1</maven.javadoc.plugin.version> <jacoco.maven.plugin.version>0.8.8</jacoco.maven.plugin.version> <nexus.staging.maven.version>1.6.13</nexus.staging.maven.version> <maven.gpg.plugin.version>3.1.0</maven.gpg.plugin.version> <maven.release.plugin.version>3.0.0</maven.release.plugin.version> <io.netty.netty-common.version>4.1.121.Final</io.netty.netty-common.version> <org.asynchttpclient.async-http-client.version>3.0.2</org.asynchttpclient.async-http-client.version> <cucumber.version>7.17.0</cucumber.version> <!-- Test dependencies --> <junit.platform.version>1.11.4</junit.platform.version> <junit.jupiter.version>5.11.4</junit.jupiter.version> <!-- Java --> <java.version>17</java.version> <maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.target>${java.version}</maven.compiler.target> <!-- Encoding --> <java.encoding>UTF-8</java.encoding> <project.build.sourceEncoding>${java.encoding}</project.build.sourceEncoding> <project.reporting.outputEncoding>${java.encoding}</project.reporting.outputEncoding> <!-- Selenium --> <io.appium.version>9.2.2</io.appium.version> <webdrivermanager.version>5.9.2</webdrivermanager.version> <org.selenium.version>4.27.0</org.selenium.version> <reportium-sdk.version>2.3</reportium-sdk.version> </properties> <dependencies> <!-- https://mvnrepository.com/artifact/io.appium/java-client --> <dependency> <groupId>io.appium</groupId> <artifactId>java-client</artifactId> <version>${io.appium.version}</version> <scope>compile</scope> <exclusions> <exclusion> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-api</artifactId> </exclusion> <exclusion> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-remote-driver</artifactId> </exclusion> <exclusion> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-support</artifactId> </exclusion> </exclusions> </dependency> <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit.jupiter.version}</version> <!-- DO NOT SCOPE THIS. <scope>test</scope>--> </dependency> <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-engine --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit.jupiter.version}</version> <scope>test</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.junit.platform/junit-platform-console-standalone --> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-console-standalone</artifactId> <version>${junit.platform.version}</version> <scope>test</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-params --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>${junit.jupiter.version}</version> <scope>test</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok --> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> <scope>compile</scope> </dependency> <!-- https://mvnrepository.com/artifact/io.github.bonigarcia/webdrivermanager --> <dependency> <groupId>io.github.bonigarcia</groupId> <artifactId>webdrivermanager</artifactId> <version>${webdrivermanager.version}</version> <exclusions> <exclusion> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </exclusion> <exclusion> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> </exclusion> </exclusions> <scope>compile</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java --> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> <version>${org.selenium.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-common</artifactId> <version>${io.netty.netty-common.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.asynchttpclient</groupId> <artifactId>async-http-client</artifactId> <version>${org.asynchttpclient.async-http-client.version}</version> <scope>compile</scope> </dependency> <!-- https://mvnrepository.com/artifact/co.verisoft/test-api --> <dependency> <groupId>co.verisoft</groupId> <artifactId>test-api</artifactId> <version>${verisoft.test.api.version}</version> <scope>compile</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin --> <dependency> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.springframework/spring-core --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>${spring.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.springframework/spring-context --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${spring.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.springframework/spring-test --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>${spring.version}</version> </dependency> <!-- Reporting SDK --> <dependency> <groupId>com.perfecto.reporting-sdk</groupId> <artifactId>reportium-java</artifactId> <version>${reportium-sdk.version}</version> <exclusions> <exclusion> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.cucumber</groupId> <artifactId>cucumber-java</artifactId> <version>${cucumber.version}</version> </dependency> <dependency> <groupId>io.cucumber</groupId> <artifactId>cucumber-spring</artifactId> <version>${cucumber.version}</version> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-devtools-v85</artifactId> <version>4.27.0</version> <scope>compile</scope> </dependency> </dependencies> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus.staging.maven.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven.gpg.plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${maven.release.plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven.source.plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.version}</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.plugin.version}</version> <configuration> <testFailureIgnore>false</testFailureIgnore> <argLine> @{jaCoCoArgLine} -Xmx1024m </argLine> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco.maven.plugin.version}</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> <configuration> <propertyName>jaCoCoArgLine</propertyName> </configuration> </execution> <!-- attached to Maven test phase --> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> <configuration> <dataFile>target/jacoco.exec</dataFile> <outputDirectory>target/jacoco-out</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven.javadoc.plugin.version}</version> <configuration> <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable> <failOnError>true</failOnError> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <repositories> <repository> <id>oss.sonatype.org-snapshot</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> <!-- Perfecto Repository --> <repository> <id>perfectomobile</id> <name>Perfecto mobile</name> <url>https://repo1.perfectomobile.com/public/repositories/maven</url> </repository> </repositories> </project>