mirror of https://github.com/OpenVidu/openvidu.git
120 lines
2.8 KiB
XML
120 lines
2.8 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>org.openvidu</groupId>
|
|
<artifactId>openvidu</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>openvidu-browser</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>OpenVidu Browser</name>
|
|
<description>
|
|
OpenVidu JS/TS library for the client-side
|
|
</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.org</id>
|
|
<name>-openvidu.org Community</name>
|
|
<organization>OpenVidu.org</organization>
|
|
<organizationUrl>https://github.com/OpenVidu/openvidu</organizationUrl>
|
|
</developer>
|
|
</developers>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<configuration>
|
|
<mainClass>${start-class}</mainClass>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>false</filtering>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.kurento</groupId>
|
|
<artifactId>kurento-utils-js</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.kurento</groupId>
|
|
<artifactId>kurento-jsonrpc-js</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.webjars.bower</groupId>
|
|
<artifactId>adapter.js</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.webjars.bower</groupId>
|
|
<artifactId>EventEmitter.js</artifactId>
|
|
</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>
|