mirror of https://github.com/OpenVidu/openvidu.git
119 lines
3.0 KiB
XML
119 lines
3.0 KiB
XML
![]() |
<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</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
|
||
|
<artifactId>openvidu-java-client</artifactId>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<name>OpenVidu Java Client</name>
|
||
|
<description> OpenVidu client for your Java backend: get sessionId's and tokens easily from your OpenVidu server</description>
|
||
|
<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>
|
||
|
<connection>scm:git:https://github.com/OpenVidu/openvidu.git</connection>
|
||
|
<developerConnection>scm:git:https://github.com/OpenVidu/openvidu.git</developerConnection>
|
||
|
<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>
|
||
|
|
||
|
<dependencies>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.apache.httpcomponents</groupId>
|
||
|
<artifactId>httpclient</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>com.googlecode.json-simple</groupId>
|
||
|
<artifactId>json-simple</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
</dependencies>
|
||
|
|
||
|
<profiles>
|
||
|
<profile>
|
||
|
<id>release-sign-artifacts</id>
|
||
|
<activation>
|
||
|
<property>
|
||
|
<name>performRelease</name>
|
||
|
<value>true</value>
|
||
|
</property>
|
||
|
</activation>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.sonatype.plugins</groupId>
|
||
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
||
|
<version>1.6.8</version>
|
||
|
<extensions>true</extensions>
|
||
|
<configuration>
|
||
|
<serverId>ossrh</serverId>
|
||
|
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-gpg-plugin</artifactId>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>sign-artifacts</id>
|
||
|
<phase>verify</phase>
|
||
|
<goals>
|
||
|
<goal>sign</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</profile>
|
||
|
</profiles>
|
||
|
</project>
|