mirror of https://github.com/OpenVidu/openvidu.git
94 lines
2.6 KiB
XML
94 lines
2.6 KiB
XML
<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>
|
|
|
|
<parent>
|
|
<groupId>io.openvidu</groupId>
|
|
<artifactId>openvidu-parent</artifactId>
|
|
<version>1.9.0-beta-1</version>
|
|
</parent>
|
|
|
|
<artifactId>openvidu-test</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>OpenVidu Test</name>
|
|
<version>1.1.0</version>
|
|
<description>
|
|
OpenVidu Tests Framework
|
|
|
|
This project contains the test framework for the openvidu projects
|
|
</description>
|
|
<url>https://github.com/OpenVidu/openvidu</url>
|
|
|
|
<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>
|
|
<url>https://github.com/OpenVidu/openvidu</url>
|
|
</organization>
|
|
|
|
<scm>
|
|
<url>${openvidu.scm.url}</url>
|
|
<connection>scm:git:${openvidu.scm.connection}</connection>
|
|
<developerConnection>scm:git:${openvidu.scm.connection}</developerConnection>
|
|
<tag>develop</tag>
|
|
</scm>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>openvidu.io</id>
|
|
<name>-openvidu.io Community</name>
|
|
<organization>OpenVidu</organization>
|
|
<organizationUrl>https://openvidu.io</organizationUrl>
|
|
</developer>
|
|
</developers>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>${version.junit}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.openvidu</groupId>
|
|
<artifactId>openvidu-client</artifactId>
|
|
<version>1.1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.kurento</groupId>
|
|
<artifactId>kurento-commons</artifactId>
|
|
<version>${version.kurento}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.kurento</groupId>
|
|
<artifactId>kurento-test</artifactId>
|
|
<version>${version.kurento}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-log4j2</artifactId>
|
|
</exclusion>
|
|
<!-- <exclusion>
|
|
<groupId>org.kurento</groupId>
|
|
<artifactId>kurento-repository-internal</artifactId>
|
|
</exclusion>-->
|
|
</exclusions>
|
|
</dependency>
|
|
<!--<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-log4j2</artifactId>
|
|
</dependency>-->
|
|
</dependencies>
|
|
</project>
|