2017-06-30 19:13:50 +02:00
|
|
|
<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>
|
2017-09-07 17:09:29 +02:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>io.openvidu</groupId>
|
|
|
|
<artifactId>openvidu-parent</artifactId>
|
2017-09-25 11:20:30 +02:00
|
|
|
<version>1.1.0</version>
|
2017-09-07 17:09:29 +02:00
|
|
|
</parent>
|
2017-06-30 19:13:50 +02:00
|
|
|
|
2017-09-07 17:09:29 +02:00
|
|
|
<artifactId>openvidu-test-e2e</artifactId>
|
2017-06-30 19:13:50 +02:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2017-09-07 17:09:29 +02:00
|
|
|
<name>OpenVidu Test e2e</name>
|
|
|
|
<description>e2e tests for OpenVidu Tutorials</description>
|
2017-06-30 19:13:50 +02:00
|
|
|
<url>http://maven.apache.org</url>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<start-class>example.openvidu.testapp.cucumbertest.TestRunner</start-class>
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
|
|
<artifactId>selenium-java</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>info.cukes</groupId>
|
|
|
|
<artifactId>cucumber-java</artifactId>
|
|
|
|
<version>1.2.5</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/info.cukes/cucumber-core -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>info.cukes</groupId>
|
|
|
|
<artifactId>cucumber-core</artifactId>
|
|
|
|
<version>1.2.5</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/info.cukes/cucumber-junit -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>info.cukes</groupId>
|
|
|
|
<artifactId>cucumber-junit</artifactId>
|
|
|
|
<version>1.2.5</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|