2017-10-04 11:40:06 +02:00
|
|
|
<?xml version='1.0' encoding='utf-8'?>
|
2022-12-22 13:41:39 +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>
|
2019-06-11 14:28:43 +02:00
|
|
|
<version>2.0.0</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>
|
2023-10-18 21:47:56 +02:00
|
|
|
<version>2.29.0</version>
|
2017-09-18 12:32:40 +02:00
|
|
|
<description>OpenVidu Server</description>
|
2019-09-15 00:20:21 +02:00
|
|
|
<url>https://openvidu.io</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>
|
2019-01-25 10:37:10 +01:00
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>build-info</goal>
|
2018-06-28 18:10:17 +02:00
|
|
|
<goal>repackage</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
2019-06-11 16:13:48 +02:00
|
|
|
<version>${version.exec.plugin}</version>
|
2018-06-28 18:10:17 +02:00
|
|
|
<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>
|
2020-03-27 20:55:25 +01:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>${version.surefire.plugin}</version>
|
|
|
|
</plugin>
|
|
|
|
|
2018-06-28 18:10:17 +02:00
|
|
|
</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>
|
2019-01-25 10:37:10 +01:00
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>build-info</goal>
|
2018-06-28 18:10:17 +02:00
|
|
|
<goal>repackage</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
2019-06-11 16:13:48 +02:00
|
|
|
<version>{version.exec.plugin}</version>
|
2018-06-28 18:10:17 +02:00
|
|
|
<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>
|
2022-11-30 11:38:21 +01:00
|
|
|
<groupId>org.apache.tomcat.embed</groupId>
|
|
|
|
<artifactId>tomcat-embed-websocket</artifactId>
|
2017-12-13 22:39:26 +01:00
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</exclusion>
|
2020-11-11 13:36:40 +01:00
|
|
|
<exclusion>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-websocket</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>
|
2019-06-11 16:13:48 +02:00
|
|
|
<version>${version.openvidu.client}</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>
|
2018-01-10 14:25:31 +01:00
|
|
|
</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>
|
2020-11-11 13:36:40 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
|
|
|
<version>${version.spring-boot}</version>
|
|
|
|
</dependency>
|
2018-01-29 15:26:31 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.docker-java</groupId>
|
|
|
|
<artifactId>docker-java</artifactId>
|
2019-06-11 16:13:48 +02:00
|
|
|
<version>${version.dockerjava}</version>
|
2018-01-29 15:26:31 +01:00
|
|
|
</dependency>
|
2020-01-31 11:54:16 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.janino</groupId>
|
|
|
|
<artifactId>janino</artifactId>
|
|
|
|
<version>${version.janino}</version>
|
2019-09-15 01:45:12 +02:00
|
|
|
</dependency>
|
2019-06-11 16:13:48 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.openvidu</groupId>
|
|
|
|
<artifactId>openvidu-java-client</artifactId>
|
|
|
|
<version>${version.openvidu.java.client}</version>
|
2018-03-14 11:22:57 +01:00
|
|
|
</dependency>
|
2021-10-27 14:04:19 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-artifact</artifactId>
|
|
|
|
<version>${version.maven.artifact}</version>
|
|
|
|
</dependency>
|
2017-12-13 22:39:26 +01:00
|
|
|
|
|
|
|
<!-- Test dependencies -->
|
|
|
|
|
2020-03-27 20:55:25 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<version>${version.spring-boot}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.skyscreamer</groupId>
|
|
|
|
<artifactId>jsonassert</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2021-11-14 23:16:54 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.openvidu</groupId>
|
|
|
|
<artifactId>openvidu-test-browsers</artifactId>
|
|
|
|
<version>${version.openvidu.test.browsers}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.powermock</groupId>
|
|
|
|
<artifactId>powermock-api-mockito2</artifactId>
|
|
|
|
<version>${version.powermock}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</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>
|