<?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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <parent>
    <groupId>fr.aneo</groupId>
    <artifactId>armonik-api-parent</artifactId>
    <version>3.28.0</version>
    <relativePath>../pom.xml</relativePath>
  </parent>

  <artifactId>armonik-client-api</artifactId>
  <packaging>jar</packaging>

  <name>ArmoniK Client API</name>
  <description>gRPC java binding for the Armonik orchestrator API</description>
  <url>https://github.com/aneoconsulting/ArmoniK.Api</url>

  <properties>
    <testcontainers.version>1.21.3</testcontainers.version>
    <assertj-core.version>3.25.3</assertj-core.version>
  </properties>

  <dependencies>
    <!-- Test dependencies -->
    <dependency>
      <groupId>org.assertj</groupId>
      <artifactId>assertj-core</artifactId>
      <version>${assertj-core.version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.testcontainers</groupId>
      <artifactId>testcontainers</artifactId>
      <version>${testcontainers.version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.testcontainers</groupId>
      <artifactId>junit-jupiter</artifactId>
      <version>${testcontainers.version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.bouncycastle</groupId>
      <artifactId>bcpkix-jdk18on</artifactId>
      <version>1.78.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>ch.qos.logback</groupId>
      <artifactId>logback-classic</artifactId>
      <version>${logback.version}</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.xolstice.maven.plugins</groupId>
        <artifactId>protobuf-maven-plugin</artifactId>
        <configuration>
          <excludes>
            <exclude>worker_service.proto</exclude>
            <exclude>agent_common.proto</exclude>
            <exclude>agent_service.proto</exclude>
            <exclude>worker_common.proto</exclude>
          </excludes>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
