2018-12-21 18:10:25 +01:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2017-06-30 19:13:50 +02:00
|
|
|
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-10-09 18:48:05 +02:00
|
|
|
|
2017-09-07 17:09:29 +02:00
|
|
|
<parent>
|
|
|
|
<groupId>io.openvidu</groupId>
|
|
|
|
<artifactId>openvidu-parent</artifactId>
|
2018-03-19 19:31:47 +01:00
|
|
|
<version>1.9.0-beta-1</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-10-09 18:48:05 +02:00
|
|
|
<version>1.1.1</version>
|
2017-06-30 19:13:50 +02:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2017-09-07 17:09:29 +02:00
|
|
|
<name>OpenVidu Test e2e</name>
|
2017-10-09 18:48:05 +02:00
|
|
|
<description>End2End tests for OpenVidu TestApp</description>
|
2018-05-06 02:39:13 +02:00
|
|
|
<url>https://openvidu.io</url>
|
2017-10-09 18:48:05 +02:00
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>Apache 2.0</name>
|
|
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<organization>
|
|
|
|
<name>OpenVidu</name>
|
2018-05-06 02:39:13 +02:00
|
|
|
<url>https://openvidu.io</url>
|
2017-10-09 18:48:05 +02:00
|
|
|
</organization>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<url>https://github.com/OpenVidu/openvidu.git</url>
|
|
|
|
<connection>scm:git:https://github.com/OpenVidu/openvidu.git</connection>
|
|
|
|
<developerConnection>scm:git:https://github.com/OpenVidu/openvidu.git</developerConnection>
|
|
|
|
<tag>develop</tag>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>openvidu.io</id>
|
|
|
|
<name>-openvidu.io Community</name>
|
|
|
|
<organization>openvidu.io</organization>
|
2018-05-06 02:39:13 +02:00
|
|
|
<organizationUrl>https://openvidu.io</organizationUrl>
|
2017-10-09 18:48:05 +02:00
|
|
|
</developer>
|
|
|
|
</developers>
|
2017-06-30 19:13:50 +02:00
|
|
|
|
|
|
|
<properties>
|
2017-10-09 18:48:05 +02:00
|
|
|
<!-- Java 8 -->
|
2017-06-30 19:13:50 +02:00
|
|
|
<java.version>1.8</java.version>
|
2017-10-09 18:48:05 +02:00
|
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
|
|
|
|
|
|
|
<!-- Encoding -->
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
|
|
|
|
<!-- Test dependencies version -->
|
2019-02-18 11:11:19 +01:00
|
|
|
<junit.jupiter.version>5.4.0</junit.jupiter.version>
|
|
|
|
<junit.platform.version>1.4.0</junit.platform.version>
|
|
|
|
<org-seleniumhq-selenium.version>3.141.59</org-seleniumhq-selenium.version>
|
2017-06-30 19:13:50 +02:00
|
|
|
</properties>
|
|
|
|
|
2019-02-21 17:59:56 +01:00
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>3.0.0-M3</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
|
2017-06-30 19:13:50 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2017-10-09 18:48:05 +02:00
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
<version>${junit.jupiter.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.bonigarcia</groupId>
|
|
|
|
<artifactId>selenium-jupiter</artifactId>
|
2019-02-18 11:11:19 +01:00
|
|
|
<version>3.1.0</version>
|
2017-06-30 19:13:50 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-10-17 14:27:03 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.bonigarcia</groupId>
|
|
|
|
<artifactId>webdrivermanager</artifactId>
|
2019-02-18 11:11:19 +01:00
|
|
|
<version>3.3.0</version>
|
2017-10-17 14:27:03 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-10-09 18:48:05 +02:00
|
|
|
|
|
|
|
|
2017-06-30 19:13:50 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
|
|
<artifactId>selenium-java</artifactId>
|
2019-02-08 11:11:29 +01:00
|
|
|
<version>${org-seleniumhq-selenium.version}</version>
|
2017-10-09 18:48:05 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
|
|
<artifactId>selenium-chrome-driver</artifactId>
|
2019-02-08 11:11:29 +01:00
|
|
|
<version>${org-seleniumhq-selenium.version}</version>
|
2017-10-09 18:48:05 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
|
|
<artifactId>selenium-firefox-driver</artifactId>
|
2019-02-08 11:11:29 +01:00
|
|
|
<version>${org-seleniumhq-selenium.version}</version>
|
2017-10-09 18:48:05 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
|
|
<artifactId>selenium-api</artifactId>
|
2019-02-08 11:11:29 +01:00
|
|
|
<version>${org-seleniumhq-selenium.version}</version>
|
2017-10-09 18:48:05 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
|
|
<artifactId>selenium-remote-driver</artifactId>
|
2019-02-08 11:11:29 +01:00
|
|
|
<version>${org-seleniumhq-selenium.version}</version>
|
2017-10-09 18:48:05 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-06-30 19:13:50 +02:00
|
|
|
<dependency>
|
2017-10-09 18:48:05 +02:00
|
|
|
<groupId>org.junit.platform</groupId>
|
|
|
|
<artifactId>junit-platform-runner</artifactId>
|
2019-02-18 11:11:19 +01:00
|
|
|
<version>${junit.platform.version}</version>
|
2017-06-30 19:13:50 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2017-10-09 18:48:05 +02:00
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
<version>${junit.jupiter.version}</version>
|
2017-10-17 14:27:03 +02:00
|
|
|
<scope>test</scope>
|
2017-10-09 18:48:05 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2018-12-21 18:10:25 +01:00
|
|
|
<groupId>com.googlecode.json-simple</groupId>
|
|
|
|
<artifactId>json-simple</artifactId>
|
|
|
|
<version>${version.json-simple}</version>
|
2019-02-18 11:11:19 +01:00
|
|
|
<scope>test</scope>
|
2017-10-09 18:48:05 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>xml-apis</groupId>
|
|
|
|
<artifactId>xml-apis</artifactId>
|
2019-02-18 11:11:19 +01:00
|
|
|
<version>2.0.2</version>
|
|
|
|
<scope>test</scope>
|
2017-06-30 19:13:50 +02:00
|
|
|
</dependency>
|
2018-12-21 18:10:25 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jcodec</groupId>
|
|
|
|
<artifactId>jcodec</artifactId>
|
|
|
|
<version>0.2.3</version>
|
2019-02-18 11:11:19 +01:00
|
|
|
<scope>test</scope>
|
2018-12-21 18:10:25 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jcodec</groupId>
|
|
|
|
<artifactId>jcodec-javase</artifactId>
|
|
|
|
<version>0.2.3</version>
|
2019-02-18 11:11:19 +01:00
|
|
|
<scope>test</scope>
|
2018-12-21 18:10:25 +01:00
|
|
|
</dependency>
|
2019-03-25 09:58:29 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.openvidu</groupId>
|
|
|
|
<artifactId>openvidu-test-browsers</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-10-16 15:49:23 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.openvidu</groupId>
|
|
|
|
<artifactId>openvidu-java-client</artifactId>
|
2019-06-04 12:19:52 +02:00
|
|
|
<version>2.10.0</version>
|
2019-02-18 11:11:19 +01:00
|
|
|
<scope>test</scope>
|
2017-10-16 15:49:23 +02:00
|
|
|
</dependency>
|
2019-02-08 21:10:23 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.mashape.unirest</groupId>
|
|
|
|
<artifactId>unirest-java</artifactId>
|
|
|
|
<version>1.4.9</version>
|
2019-02-18 11:11:19 +01:00
|
|
|
<scope>test</scope>
|
2019-02-08 21:10:23 +01:00
|
|
|
</dependency>
|
2017-06-30 19:13:50 +02:00
|
|
|
</dependencies>
|
2017-10-09 18:48:05 +02:00
|
|
|
|
2017-06-30 19:13:50 +02:00
|
|
|
</project>
|