2017-10-04 11:40:06 +02:00
|
|
|
<?xml version='1.0' encoding='utf-8'?>
|
2018-03-15 21:35:13 +01: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">
|
2016-10-11 09:53:32 +02:00
|
|
|
<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>
|
2018-03-19 19:31:47 +01:00
|
|
|
<version>1.9.0-beta-1</version>
|
2016-10-11 09:53:32 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>openvidu-server</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2017-05-12 10:55:54 +02:00
|
|
|
<name>OpenVidu Server</name>
|
2018-07-23 11:37:18 +02:00
|
|
|
<version>2.4.0</version>
|
2017-09-18 12:32:40 +02:00
|
|
|
<description>OpenVidu Server</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>
|
2017-05-05 18:47:52 +02:00
|
|
|
|
2017-03-09 19:46:07 +01:00
|
|
|
<properties>
|
|
|
|
<!-- Main class -->
|
2017-06-06 11:52:13 +02:00
|
|
|
<start-class>io.openvidu.server.OpenViduServer</start-class>
|
2017-03-09 19:46:07 +01:00
|
|
|
</properties>
|
2016-10-11 09:53:32 +02:00
|
|
|
|
2018-06-28 18:10:17 +02:00
|
|
|
<profiles>
|
|
|
|
|
|
|
|
<profile>
|
|
|
|
<id>exec</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>false</filtering>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<includes>
|
|
|
|
<include>banner.txt</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<version>${version.spring-boot}</version>
|
|
|
|
<configuration>
|
|
|
|
<mainClass>${start-class}</mainClass>
|
|
|
|
<layout>ZIP</layout>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>repackage</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
<version>1.6.0</version>
|
|
|
|
<configuration>
|
|
|
|
<mainClass>${start-class}</mainClass>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
|
|
<version>${version.enforcer.plugin}</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
|
|
|
|
<profile>
|
|
|
|
<id>dependency</id>
|
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>false</filtering>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<includes>
|
|
|
|
<include>banner.txt</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<version>${version.spring-boot}</version>
|
|
|
|
<configuration>
|
|
|
|
<mainClass>${start-class}</mainClass>
|
|
|
|
<layout>ZIP</layout>
|
|
|
|
<classifier>exec</classifier>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>repackage</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
<version>1.6.0</version>
|
|
|
|
<configuration>
|
|
|
|
<mainClass>${start-class}</mainClass>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
|
|
<version>${version.enforcer.plugin}</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2016-10-11 09:53:32 +02:00
|
|
|
|
2017-05-05 18:47:52 +02:00
|
|
|
<dependencies>
|
2016-10-11 09:53:32 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.kurento</groupId>
|
|
|
|
<artifactId>kurento-jsonrpc-server</artifactId>
|
2017-12-13 22:39:26 +01:00
|
|
|
<version>${version.kurento}</version>
|
2016-10-11 09:53:32 +02:00
|
|
|
<exclusions>
|
2017-12-13 22:39:26 +01:00
|
|
|
<exclusion>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</exclusion>
|
2018-01-10 14:25:31 +01:00
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</exclusion>
|
2016-10-11 09:53:32 +02:00
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2017-06-06 11:52:13 +02:00
|
|
|
<groupId>io.openvidu</groupId>
|
2017-12-13 22:39:26 +01:00
|
|
|
<artifactId>openvidu-client</artifactId>
|
|
|
|
<version>1.1.0</version>
|
2018-01-10 14:25:31 +01:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2016-10-11 09:53:32 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2017-12-13 22:39:26 +01:00
|
|
|
<groupId>org.kurento</groupId>
|
|
|
|
<artifactId>kurento-client</artifactId>
|
|
|
|
<version>${version.kurento}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2016-10-11 09:53:32 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2017-12-13 22:39:26 +01:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
|
|
<version>${version.spring-boot}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
|
<version>${version.spring-boot}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
<version>${version.spring-boot}</version>
|
2016-10-11 09:53:32 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2018-01-10 14:25:31 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.googlecode.json-simple</groupId>
|
|
|
|
<artifactId>json-simple</artifactId>
|
|
|
|
<version>1.1.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.thymeleaf</groupId>
|
|
|
|
<artifactId>thymeleaf-spring4</artifactId>
|
|
|
|
<version>3.0.9.RELEASE</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>nz.net.ultraq.thymeleaf</groupId>
|
|
|
|
<artifactId>thymeleaf-layout-dialect</artifactId>
|
|
|
|
<version>2.2.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2018-01-16 11:02:45 +01:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
|
|
<version>${version.spring-boot}</version>
|
2018-01-10 14:25:31 +01:00
|
|
|
</dependency>
|
2018-01-29 15:26:31 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.docker-java</groupId>
|
|
|
|
<artifactId>docker-java</artifactId>
|
|
|
|
<version>3.0.6</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.openvidu</groupId>
|
|
|
|
<artifactId>openvidu-java-client</artifactId>
|
2018-07-23 11:51:28 +02:00
|
|
|
<version>2.4.0</version>
|
2018-01-29 15:26:31 +01:00
|
|
|
</dependency>
|
2018-02-02 19:45:39 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.janino</groupId>
|
|
|
|
<artifactId>janino</artifactId>
|
|
|
|
<version>3.0.7</version>
|
|
|
|
</dependency>
|
2018-03-14 11:22:57 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
<version>3.7</version>
|
|
|
|
</dependency>
|
2017-12-13 22:39:26 +01:00
|
|
|
|
|
|
|
<!-- Test dependencies -->
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.openvidu</groupId>
|
|
|
|
<artifactId>openvidu-test</artifactId>
|
|
|
|
<version>1.1.0</version>
|
|
|
|
<scope>test</scope>
|
2018-01-10 14:25:31 +01:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-nop</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2017-12-13 22:39:26 +01:00
|
|
|
</dependency>
|
2018-01-10 14:25:31 +01:00
|
|
|
|
2016-10-11 09:53:32 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest-core</artifactId>
|
2017-12-13 22:39:26 +01:00
|
|
|
<version>${version.hamcrest-core}</version>
|
2016-10-11 09:53:32 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2017-12-13 22:39:26 +01:00
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest-library</artifactId>
|
|
|
|
<version>${version.hamcrest-library}</version>
|
2016-10-11 09:53:32 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2017-12-13 22:39:26 +01:00
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-all</artifactId>
|
|
|
|
<version>${version.mockito}</version>
|
2016-10-11 09:53:32 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-04-01 23:31:29 +02:00
|
|
|
<dependency>
|
2017-12-13 22:39:26 +01:00
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
<version>${version.mockito}</version>
|
|
|
|
<scope>test</scope>
|
2017-09-18 17:49:23 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
2017-12-13 22:39:26 +01:00
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest-core</artifactId>
|
2017-09-18 17:49:23 +02:00
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2017-04-01 23:31:29 +02:00
|
|
|
</dependency>
|
2017-05-11 12:07:49 +02:00
|
|
|
<dependency>
|
2017-12-13 22:39:26 +01:00
|
|
|
<groupId>org.powermock</groupId>
|
|
|
|
<artifactId>powermock-api-mockito</artifactId>
|
|
|
|
<version>${version.powermock}</version>
|
|
|
|
<scope>test</scope>
|
2017-05-11 12:07:49 +02:00
|
|
|
</dependency>
|
2017-06-05 11:13:25 +02:00
|
|
|
<dependency>
|
2017-12-13 22:39:26 +01:00
|
|
|
<groupId>org.powermock</groupId>
|
|
|
|
<artifactId>powermock-module-junit4</artifactId>
|
|
|
|
<version>${version.powermock}</version>
|
|
|
|
<scope>test</scope>
|
2017-06-05 11:13:25 +02:00
|
|
|
</dependency>
|
2016-10-11 09:53:32 +02:00
|
|
|
|
2017-12-13 22:39:26 +01:00
|
|
|
<!-- Test dependencies -->
|
|
|
|
|
|
|
|
</dependencies>
|
2016-10-11 09:53:32 +02:00
|
|
|
|
2018-01-30 09:27:02 +01:00
|
|
|
</project>
|