2017-06-06 11:52:13 +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>
|
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>
|
2017-06-06 11:52:13 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>openvidu-java-client</artifactId>
|
2018-03-15 23:11:58 +01:00
|
|
|
<version>1.8.0</version>
|
2017-06-06 11:52:13 +02:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>OpenVidu Java Client</name>
|
2017-09-07 17:09:29 +02:00
|
|
|
<description>OpenVidu client for your Java backend: get sessionId's and tokens easily from your OpenVidu server</description>
|
2017-06-06 11:52:13 +02:00
|
|
|
<url>http://openvidu.io</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>http://openvidu.io</url>
|
|
|
|
</organization>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<url>https://github.com/OpenVidu/openvidu.git</url>
|
2018-01-29 12:27:37 +01:00
|
|
|
<connection>scm:git:git://github.com/OpenVidu/openvidu.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:OpenVidu/openvidu.git</developerConnection>
|
2017-06-06 11:52:13 +02:00
|
|
|
<tag>develop</tag>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>openvidu.io</id>
|
|
|
|
<name>-openvidu.io Community</name>
|
|
|
|
<organization>openvidu.io</organization>
|
|
|
|
<organizationUrl>http://openvidu.io</organizationUrl>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
</properties>
|
|
|
|
|
2017-07-28 11:51:25 +02:00
|
|
|
<distributionManagement>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>ossrh</id>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
<repository>
|
|
|
|
<id>ossrh</id>
|
|
|
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
|
|
|
|
2017-06-06 11:52:13 +02:00
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2017-12-13 22:39:26 +01:00
|
|
|
<version>${version.junit}</version>
|
2017-06-06 11:52:13 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
2017-12-13 22:39:26 +01:00
|
|
|
<version>${version.httpclient}</version>
|
2017-06-06 11:52:13 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.googlecode.json-simple</groupId>
|
|
|
|
<artifactId>json-simple</artifactId>
|
2017-12-13 22:39:26 +01:00
|
|
|
<version>${version.json-simple}</version>
|
2017-06-06 11:52:13 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<profiles>
|
2017-07-27 14:29:29 +02:00
|
|
|
<profile>
|
|
|
|
<id>default</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>2.10.4</version>
|
|
|
|
<configuration>
|
2017-07-28 11:51:25 +02:00
|
|
|
|
2017-07-27 14:29:29 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2017-06-06 11:52:13 +02:00
|
|
|
<profile>
|
|
|
|
<id>release-sign-artifacts</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>performRelease</name>
|
|
|
|
<value>true</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2017-07-28 11:51:25 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>3.0.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>2.10.4</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<version>1.6</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2017-06-06 11:52:13 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
|
|
<version>1.6.8</version>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
2018-03-15 23:07:01 +01:00
|
|
|
<serverId>ossrh</serverId>
|
|
|
|
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
|
|
|
|
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
|
|
|
</configuration>
|
2017-06-06 11:52:13 +02:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2017-07-28 11:51:25 +02:00
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
2017-06-06 11:52:13 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2017-07-28 11:51:25 +02:00
|
|
|
<id>copy-resources</id>
|
|
|
|
<phase>validate</phase>
|
2017-06-06 11:52:13 +02:00
|
|
|
<goals>
|
2017-07-28 11:51:25 +02:00
|
|
|
<goal>copy-resources</goal>
|
2017-06-06 11:52:13 +02:00
|
|
|
</goals>
|
2017-07-28 11:51:25 +02:00
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${basedir}/target/classes/static/</outputDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>${basedir}/../elastest-torm-gui/dist</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</configuration>
|
2017-06-06 11:52:13 +02:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
</project>
|