<?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-worker-api</artifactId>
  <packaging>jar</packaging>

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

  <build>
    <plugins>
      <plugin>
        <groupId>org.xolstice.maven.plugins</groupId>
        <artifactId>protobuf-maven-plugin</artifactId>
        <configuration>
          <includes>
            <include>agent_service.proto</include>
            <include>agent_common.proto</include>
            <include>worker_service.proto</include>
            <include>worker_common.proto</include>
            <include>health_checks_service.proto</include>
            <include>health_checks_common.proto</include>
            <include>objects.proto</include>
            <include>result_status.proto</include>
            <include>task_status.proto</include>
          </includes>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
