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>
|
2017-06-06 11:52:13 +02:00
|
|
|
<groupId>io.openvidu</groupId>
|
2017-09-07 17:09:29 +02:00
|
|
|
<artifactId>openvidu-parent</artifactId>
|
2017-09-25 10:24:25 +02:00
|
|
|
<version>1.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>
|
2017-09-25 10:24:25 +02:00
|
|
|
<version>1.0.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>
|
|
|
|
<organizationUrl>http://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
|
|
|
|
|
|
|
<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>
|
2017-05-05 18:47:52 +02:00
|
|
|
|
2017-03-09 19:46:07 +01:00
|
|
|
<plugins>
|
2017-05-05 18:47:52 +02:00
|
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<mainClass>${start-class}</mainClass>
|
|
|
|
<layout>ZIP</layout>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>repackage</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
2017-03-09 19:46:07 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<mainClass>${start-class}</mainClass>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2016-10-11 09:53:32 +02:00
|
|
|
</build>
|
|
|
|
|
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>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2017-06-06 11:52:13 +02:00
|
|
|
<groupId>io.openvidu</groupId>
|
2016-10-11 09:53:32 +02:00
|
|
|
<artifactId>openvidu-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2017-06-06 11:52:13 +02:00
|
|
|
<groupId>io.openvidu</groupId>
|
2016-10-11 09:53:32 +02:00
|
|
|
<artifactId>openvidu-client</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
<scope>test</scope>
|
2017-05-05 18:47:52 +02:00
|
|
|
</dependency>
|
2016-10-11 09:53:32 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.kurento</groupId>
|
|
|
|
<artifactId>kurento-client</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest-core</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.powermock</groupId>
|
|
|
|
<artifactId>powermock-module-junit4</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.powermock</groupId>
|
|
|
|
<artifactId>powermock-api-mockito</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-04-01 23:31:29 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
2017-09-18 17:49:23 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2017-04-01 23:31:29 +02:00
|
|
|
</dependency>
|
2017-05-11 12:07:49 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.googlecode.json-simple</groupId>
|
|
|
|
<artifactId>json-simple</artifactId>
|
|
|
|
</dependency>
|
2017-06-05 11:13:25 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
2017-09-18 17:49:23 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2017-06-05 11:13:25 +02:00
|
|
|
</dependency>
|
2016-10-11 09:53:32 +02:00
|
|
|
</dependencies>
|
|
|
|
|
2017-05-05 18:47:52 +02:00
|
|
|
<!-- <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> -->
|
2016-10-11 09:53:32 +02:00
|
|
|
|
|
|
|
</project>
|