<?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.camunda</groupId>
    <artifactId>camunda-library-parent</artifactId>
    <version>8.9.9</version>
    <relativePath>../library-parent/pom.xml</relativePath>
  </parent>

  <artifactId>camunda-testing</artifactId>

  <packaging>pom</packaging>
  <name>Camunda Testing Parent</name>

  <licenses>
    <license>
      <name>Apache License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0</url>
    </license>
  </licenses>

  <modules>
    <module>camunda-process-test-java</module>
    <module>camunda-process-test-spring</module>
    <module>camunda-process-test-spring-boot-3</module>
    <module>camunda-process-test-spring-boot-4</module>
    <module>camunda-process-test-example</module>
    <module>camunda-process-test-json-test-cases</module>
    <module>camunda-process-test-langchain4j</module>
  </modules>

  <properties>
    <license.header.file>com/mycila/maven/plugin/license/templates/APACHE-2.txt</license.header.file>
  </properties>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-failsafe-plugin</artifactId>
        <configuration>
          <skipITs>${skipITs}</skipITs>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-dependency-plugin</artifactId>
        <configuration combine.children="append">
          <ignoredUnusedDeclaredDependencies>
            <dep>org.apache.logging.log4j:log4j-slf4j2-impl</dep>
            <dep>org.apache.logging.log4j:log4j-core</dep>
            <dep>io.camunda:zeebe-build-tools</dep>
            <dep>org.junit.jupiter:junit-jupiter-engine</dep>
          </ignoredUnusedDeclaredDependencies>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
