<?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>io.holunda.polyflow</groupId>
    <artifactId>polyflow-parent</artifactId>
    <version>3.2.0</version>
    <relativePath>../../bom/parent/pom.xml</relativePath>
  </parent>

  <artifactId>polyflow-integration-camunda-bpm-engine-parent</artifactId>
  <name>POM: integration/${project.artifactId}</name>
  <packaging>pom</packaging>

  <properties>
    <camunda-bpm.version>7.16.0</camunda-bpm.version>
    <camunda-bpm-assert.version>14.0.0</camunda-bpm-assert.version>
    <!-- pin assert-core it because BPM Assert can't work with larger version -->
    <assert-core.version>3.18.1</assert-core.version>
    <camunda-bpm-mockito.version>5.16.0</camunda-bpm-mockito.version>
  </properties>

  <modules>
    <module>taskpool-collector</module>
    <module>engine-client</module>
    <module>springboot-starter</module>
    <module>springboot-autoconfigure</module>
  </modules>

  <dependencyManagement>
    <dependencies>

      <dependency>
        <groupId>io.holunda.polyflow</groupId>
        <artifactId>polyflow-camunda-bpm-springboot-autoconfigure</artifactId>
        <version>${project.version}</version>
      </dependency>
      <dependency>
        <groupId>io.holunda.polyflow</groupId>
        <artifactId>polyflow-camunda-bpm-engine-client</artifactId>
        <version>${project.version}</version>
      </dependency>
      <dependency>
        <groupId>io.holunda.polyflow</groupId>
        <artifactId>polyflow-camunda-bpm-taskpool-collector</artifactId>
        <version>${project.version}</version>
      </dependency>

      <dependency>
        <groupId>org.camunda.bpm</groupId>
        <artifactId>camunda-bom</artifactId>
        <version>${camunda-bpm.version}</version>
        <scope>import</scope>
        <type>pom</type>
      </dependency>

      <dependency>
        <groupId>org.camunda.bpm.springboot</groupId>
        <artifactId>camunda-bpm-spring-boot-starter-test</artifactId>
        <version>${camunda-bpm.version}</version>
        <scope>test</scope>
      </dependency>
      <dependency>
        <groupId>org.camunda.bpm.extension.mockito</groupId>
        <artifactId>camunda-bpm-mockito</artifactId>
        <version>${camunda-bpm-mockito.version}</version>
        <scope>test</scope>
      </dependency>
      <dependency>
        <groupId>org.camunda.bpm.assert</groupId>
        <artifactId>camunda-bpm-assert</artifactId>
        <version>${camunda-bpm-assert.version}</version>
        <scope>test</scope>
      </dependency>
      <dependency>
        <groupId>org.assertj</groupId>
        <artifactId>assertj-core</artifactId>
        <version>${assert-core.version}</version>
        <scope>test</scope>
      </dependency>


    </dependencies>
  </dependencyManagement>
</project>
