2016-10-11 09:53:32 +02:00
|
|
|
<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>org.openvidu</groupId>
|
|
|
|
<artifactId>openvidu</artifactId>
|
2016-10-15 00:11:17 +02:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2016-10-11 09:53:32 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>openvidu-client</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>Kurento Room Client</name>
|
|
|
|
<description>
|
|
|
|
Kurento Room library for the client-side of Kurento Room Server
|
|
|
|
</description>
|
|
|
|
<url>http://www.kurento.org/docs/${project.version}</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>Kurento</name>
|
|
|
|
<url>http://www.kurento.org</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>kurento.org</id>
|
|
|
|
<name>-kurento.org Community</name>
|
|
|
|
<organization>Kurento.org</organization>
|
|
|
|
<organizationUrl>http://www.kurento.org</organizationUrl>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.kurento</groupId>
|
|
|
|
<artifactId>kurento-jsonrpc-client</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!-- <dependency>
|
|
|
|
<groupId>org.openvidu</groupId>
|
|
|
|
<artifactId>openvidu-server</artifactId>
|
|
|
|
</dependency>-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.kurento</groupId>
|
|
|
|
<artifactId>kurento-jsonrpc-client-jetty</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
<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>
|