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
|
|
|
|
2025-01-03 13:15:11 +01:00
|
|
|
<groupId>io.openvidu</groupId>
|
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>
|
2024-10-21 22:03:04 +02:00
|
|
|
<java.version>17</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>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
2025-01-03 13:15:11 +01:00
|
|
|
<openvidu.scm.url>https://github.com/OpenVidu/openvidu</openvidu.scm.url>
|
|
|
|
<openvidu.scm.connection>git@github.com:OpenVidu/openvidu.git</openvidu.scm.connection>
|
|
|
|
|
2025-01-03 13:52:33 +01:00
|
|
|
<version.spring-boot>3.4.1</version.spring-boot>
|
|
|
|
<version.surefire.plugin>3.5.2</version.surefire.plugin>
|
|
|
|
<version.selenium>4.27.0</version.selenium>
|
|
|
|
<version.gson>2.11.0</version.gson>
|
2025-01-03 13:15:11 +01:00
|
|
|
<version.livekit-server>0.8.3</version.livekit-server>
|
2025-01-03 13:52:33 +01:00
|
|
|
<version.testcontainers>1.20.4</version.testcontainers>
|
|
|
|
<version.dockerjava>3.4.1</version.dockerjava>
|
2025-01-03 13:15:11 +01:00
|
|
|
<version.stringsimilarity>2.0.0</version.stringsimilarity>
|
|
|
|
<version.openvidu-test-browsers>1.1.0</version.openvidu-test-browsers>
|
2025-07-03 14:23:10 +02:00
|
|
|
<version.minio>8.5.17</version.minio>
|
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>
|
2025-01-03 13:15:11 +01:00
|
|
|
<version>${version.openvidu-test-browsers}</version>
|
2017-10-16 15:49:23 +02:00
|
|
|
</dependency>
|
2024-07-02 19:19:05 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.livekit</groupId>
|
|
|
|
<artifactId>livekit-server</artifactId>
|
2025-01-03 13:15:11 +01:00
|
|
|
<version>${version.livekit-server}</version>
|
2024-07-02 19:19:05 +02:00
|
|
|
</dependency>
|
2023-02-08 09:49:11 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.docker-java</groupId>
|
|
|
|
<artifactId>docker-java</artifactId>
|
|
|
|
<version>${version.dockerjava}</version>
|
|
|
|
</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>
|
2025-07-03 14:23:10 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.minio</groupId>
|
|
|
|
<artifactId>minio</artifactId>
|
|
|
|
<version>${version.minio}</version>
|
|
|
|
</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>
|