2019-06-11 16:13:48 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2016-10-11 09:53:32 +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>
|
|
|
|
|
|
|
|
<parent>
|
2017-06-06 11:52:13 +02:00
|
|
|
<groupId>io.openvidu</groupId>
|
2017-09-07 17:09:29 +02:00
|
|
|
<artifactId>openvidu-parent</artifactId>
|
2019-06-11 16:13:48 +02:00
|
|
|
<version>2.0.0</version>
|
2016-10-11 09:53:32 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>openvidu-client</artifactId>
|
2017-09-25 11:20:30 +02:00
|
|
|
<version>1.1.0</version>
|
2016-10-11 09:53:32 +02:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2017-05-12 10:55:54 +02:00
|
|
|
<name>OpenVidu Client</name>
|
2016-10-11 09:53:32 +02:00
|
|
|
<description>
|
2017-05-12 10:55:54 +02:00
|
|
|
OpenVidu client library for the client-side of OpenVidu Server
|
2016-10-11 09:53:32 +02:00
|
|
|
</description>
|
2017-05-12 10:55:54 +02:00
|
|
|
<url>https://github.com/OpenVidu/openvidu</url>
|
2016-10-11 09:53:32 +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>
|
2017-05-12 10:55:54 +02:00
|
|
|
<name>OpenVidu</name>
|
|
|
|
<url>https://github.com/OpenVidu/openvidu</url>
|
2016-10-11 09:53:32 +02:00
|
|
|
</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>
|
2017-06-06 11:52:13 +02:00
|
|
|
<id>openvidu.io</id>
|
|
|
|
<name>-openvidu.io Community</name>
|
|
|
|
<organization>OpenVidu</organization>
|
2018-05-06 02:39:13 +02:00
|
|
|
<organizationUrl>https://openvidu.io</organizationUrl>
|
2016-10-11 09:53:32 +02:00
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.kurento</groupId>
|
|
|
|
<artifactId>kurento-jsonrpc-client</artifactId>
|
2017-12-13 22:39:26 +01:00
|
|
|
<version>${version.kurento}</version>
|
2016-10-11 09:53:32 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.kurento</groupId>
|
|
|
|
<artifactId>kurento-jsonrpc-client-jetty</artifactId>
|
2017-12-13 22:39:26 +01:00
|
|
|
<version>${version.kurento}</version>
|
2016-10-11 09:53:32 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2017-12-13 22:39:26 +01:00
|
|
|
<version>${version.junit}</version>
|
2016-10-11 09:53:32 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
2019-06-11 16:13:48 +02:00
|
|
|
<version>${version.mockito.core}</version>
|
2016-10-11 09:53:32 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>default</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>default</name>
|
|
|
|
<value>true</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skipTests>true</skipTests>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skipTests>true</skipTests>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
|
|
|
</project>
|