selenium-steps
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.testerum</groupId>
<artifactId>selenium-steps</artifactId>
<version>5.3.5</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">
<parent>
<artifactId>steps</artifactId>
<groupId>com.testerum</groupId>
<version>5.3.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>selenium-steps</artifactId>
<dependencies>
<!--==================== Internal Dependencies ====================-->
<!-- common-jdk -->
<dependency>
<groupId>com.testerum</groupId>
<artifactId>common-jdk</artifactId>
</dependency>
<!-- common-parsing -->
<dependency>
<groupId>com.testerum</groupId>
<artifactId>common-parsing</artifactId>
</dependency>
<!-- common-expression-evaluator -->
<dependency>
<groupId>com.testerum</groupId>
<artifactId>common-expression-evaluator</artifactId>
</dependency>
<!-- settings -->
<dependency>
<groupId>com.testerum</groupId>
<artifactId>settings</artifactId>
</dependency>
<!-- model -->
<dependency>
<groupId>com.testerum</groupId>
<artifactId>model</artifactId>
</dependency>
<!-- file-service -->
<dependency>
<groupId>com.testerum</groupId>
<artifactId>file-service</artifactId>
</dependency>
<!--==================== testerum dependencies ====================-->
<!-- testerum-steps-api -->
<dependency>
<groupId>com.testerum</groupId>
<artifactId>testerum-steps-api</artifactId>
</dependency>
<!--==================== External Dependencies ====================-->
<!-- Kotlin -->
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
</dependency>
<!-- slf4j -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<!-- selenium -->
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
</dependency>
<!--jparsec -->
<dependency>
<groupId>org.jparsec</groupId>
<artifactId>jparsec</artifactId>
</dependency>
<!--==================== test dependencies ====================-->
<!-- slf4j-simple -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>
<!-- JUnit 5 -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<scope>test</scope>
</dependency>
<!-- assertj-core -->
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<sourceDirectory>src/main/kotlin</sourceDirectory>
<testSourceDirectory>src/test/kotlin</testSourceDirectory>
<plugins>
<!-- Kotlin -->
<plugin>
<artifactId>kotlin-maven-plugin</artifactId>
<groupId>org.jetbrains.kotlin</groupId>
</plugin>
<!-- testerum-extensions-maven-plugin -->
<plugin>
<groupId>com.testerum</groupId>
<artifactId>testerum-extensions-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<profiles>
<!-- development -->
<profile>
<id>development</id>
<!-- activated by the absence of the "production" system property -->
<activation>
<property>
<name>!production</name>
</property>
</activation>
<build>
<plugins>
<!-- copy dependencies to "package/basic_steps" directory -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<configuration>
<outputDirectory>${project.basedir}/../../package/basic_steps</outputDirectory>
<includeScope>runtime</includeScope>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>