<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">

  <modelVersion>4.0.0</modelVersion>

  <parent>
    <groupId>io.confluent</groupId>
    <artifactId>rest-utils-parent</artifactId>
    <version>7.9.5</version>
  </parent>

  <artifactId>ce-kafka-http-server-parent</artifactId>
  <name>ce-kafka-http-server-parent</name>
  <packaging>pom</packaging>
  <version>7.9.5</version>

  <licenses>
    <license>
      <name>Confluent License Agreement</name>
      <url>https://www.confluent.io/legal/confluent-license-agreement/</url>
      <distribution>repo</distribution>
    </license>
  </licenses>

  <description>
    An HTTP server that runs in the Confluent Server.
  </description>

  <scm>
    <connection>scm:git:git://github.com/confluentinc/ce-kafka-http-server.git</connection>
    <developerConnection>scm:git:git@github.com:confluentinc/ce-kafka-http-server.git</developerConnection>
    <url>https://github.com/confluentinc/ce-kafka-http-server</url>
    <tag>HEAD</tag>
  </scm>

  <properties>
    <io.confluent.ce-kafka-http-server.version>7.9.5</io.confluent.ce-kafka-http-server.version>
  </properties>

  <modules>
    <module>ce-kafka-http-server</module>
  </modules>

  <profiles>
    <profile>
      <id>cloudPackageSmokeTest</id>
      <activation>
        <property>
          <name>KAFKA_REST_CLOUD_SMOKE_TESTS</name>
          <value>true</value>
        </property>
      </activation>
      <build>
        <plugins>
          <!-- skip checkstyle -->
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-checkstyle-plugin</artifactId>
            <configuration>
              <skip>true</skip>
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
</project>
