openvidu/openvidu-server/pom.xml

188 lines
5.0 KiB
XML
Raw Normal View History

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>io.openvidu</groupId>
<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>
<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>
<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>
<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>
<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>
<properties>
<!-- Main class -->
<start-class>io.openvidu.server.OpenViduServer</start-class>
</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>
<plugins>
<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>
<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>
<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>
<groupId>io.openvidu</groupId>
2016-10-11 09:53:32 +02:00
<artifactId>openvidu-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<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>
</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>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
2017-04-01 23:31:29 +02:00
</dependency>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
2016-10-11 09:53:32 +02:00
</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> -->
2016-10-11 09:53:32 +02:00
</project>