<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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>
  <!-- Maven coordinates -->
  <groupId>org.kurento</groupId>
  <artifactId>kms-api-elements</artifactId>
  <version>7.1.0</version>
  <packaging>jar</packaging>
  <!-- Project-level information -->
  <name>elements</name>
  <description>Kurento Media Server elements module</description>
  <url>https://kurento.openvidu.io/</url>
  <!-- Project configuration -->
  <properties>
    <!-- maven-resources-plugin -->
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <!-- maven-compiler-plugin -->
    <maven.compiler.release>11</maven.compiler.release>
  </properties>
  <dependencies>
    <dependency>
      <groupId>org.kurento</groupId>
      <artifactId>kms-api-core</artifactId>
      <version>[7.0.0,8.0.0-SNAPSHOT)</version>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.11.0</version>
      </plugin>
      <plugin>
        <groupId>org.kurento</groupId>
        <artifactId>kurento-maven-plugin</artifactId>
        <version>7.0.0</version>
        <executions>
          <execution>
            <goals>
              <goal>generate-kurento-client</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <!--
	Kurento projects don't define a <distributionManagement> section with the
	repositories used for deployment. Instead, CI injects a `settings.xml` file
	with a "deploy" profile that configures maven-deploy-plugin through properties
	`altSnapshotDeploymentRepository` and `altReleaseDeploymentRepository`.
	Refer to Jenkins Managed File "Kurento GitHub Maven settings.xml".
	<distributionManagement></distributionManagement>
	-->
  <licenses>
    <license>
      <name>Apache 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>kurento.org</id>
      <name>Kurento Community</name>
      <organization>Kurento</organization>
      <organizationUrl>https://kurento.openvidu.io/</organizationUrl>
    </developer>
  </developers>
  <scm>
    <url>https://github.com/Kurento/kurento</url>
    <connection>scm:git:https://github.com/Kurento/kurento.git</connection>
    <developerConnection>scm:git:ssh://github.com/Kurento/kurento.git</developerConnection>
  </scm>
</project>
