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>
|
2019-06-11 16:13:48 +02:00
|
|
|
<version>2.0.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-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>
|
2020-11-15 22:12:07 +01:00
|
|
|
<!-- Java 11 -->
|
|
|
|
<java.version>11</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>
|
2017-06-30 19:13:50 +02:00
|
|
|
</properties>
|
|
|
|
|
2019-02-21 17:59:56 +01:00
|
|
|
<build>
|
2019-06-12 15:08:24 +02:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>${version.surefire.plugin}</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2019-02-21 17:59:56 +01:00
|
|
|
</build>
|
|
|
|
|
2017-06-30 19:13:50 +02:00
|
|
|
<dependencies>
|
2019-11-17 20:06:27 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<version>${version.spring-boot}</version>
|
2017-06-30 19:13:50 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
|
|
<artifactId>selenium-java</artifactId>
|
2019-06-11 16:13:48 +02:00
|
|
|
<version>${version.selenium}</version>
|
2017-10-09 18:48:05 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
|
|
<artifactId>selenium-api</artifactId>
|
2019-06-11 16:13:48 +02:00
|
|
|
<version>${version.selenium}</version>
|
2017-10-09 18:48:05 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
|
|
<artifactId>selenium-remote-driver</artifactId>
|
2019-06-11 16:13:48 +02:00
|
|
|
<version>${version.selenium}</version>
|
2017-10-09 18:48:05 +02:00
|
|
|
</dependency>
|
2017-06-30 19:13:50 +02:00
|
|
|
<dependency>
|
2020-02-01 13:17:31 +01:00
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
<version>${version.gson}</version>
|
2018-12-21 18:10:25 +01:00
|
|
|
</dependency>
|
2017-10-16 15:49:23 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.openvidu</groupId>
|
2019-06-11 16:13:48 +02:00
|
|
|
<artifactId>openvidu-test-browsers</artifactId>
|
|
|
|
<version>${version.openvidu.test.browsers}</version>
|
2017-10-16 15:49:23 +02:00
|
|
|
</dependency>
|
2019-02-08 21:10:23 +01:00
|
|
|
<dependency>
|
2019-06-11 16:13:48 +02:00
|
|
|
<groupId>io.openvidu</groupId>
|
|
|
|
<artifactId>openvidu-java-client</artifactId>
|
|
|
|
<version>${version.openvidu.java.client}</version>
|
2019-02-08 21:10:23 +01:00
|
|
|
</dependency>
|
2021-11-04 13:17:58 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
|
<artifactId>testcontainers</artifactId>
|
|
|
|
<version>${version.testcontainers}</version>
|
|
|
|
</dependency>
|
2022-10-19 12:45:58 +02:00
|
|
|
<dependency>
|
2022-11-07 13:35:07 +01:00
|
|
|
<groupId>info.debatty</groupId>
|
|
|
|
<artifactId>java-string-similarity</artifactId>
|
2022-11-30 11:44:40 +01:00
|
|
|
<version>${version.stringsimilarity}</version>
|
2022-10-19 12:45:58 +02: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>
|