<?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>org.kie.kogito</groupId>
    <artifactId>jbpm</artifactId>
    <version>1.44.1.Final</version>
  </parent>

  <artifactId>process-workitems</artifactId>
  <packaging>jar</packaging>

  <name>Kogito :: Process :: WorkItems</name>
  <description>Kogito WorkItems</description>

  <properties>
    <java.module.name>org.kie.kogito.process.workitems</java.module.name>
  </properties>

  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>org.kie.kogito</groupId>
        <artifactId>kogito-kie-bom</artifactId>
        <version>${project.version}</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
    </dependencies>
  </dependencyManagement>

  <dependencies>
    <dependency>
      <groupId>org.kie.kogito</groupId>
      <artifactId>kogito-api</artifactId>
    </dependency>
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-databind</artifactId>
    </dependency>
    <dependency>
      <groupId>org.drools</groupId>
      <artifactId>drools-core</artifactId>
    </dependency>
    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-engine</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.assertj</groupId>
      <artifactId>assertj-core</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-enforcer-plugin</artifactId>
        <dependencies>
          <dependency>
            <groupId>de.skuzzle.enforcer</groupId>
            <artifactId>restrict-imports-enforcer-rule</artifactId>
            <version>${version.de.skuzzle.enforcer}</version>
          </dependency>
        </dependencies>
        <executions>
          <execution>
            <id>check-kie7-restricted-imports</id>
            <phase>process-sources</phase>
            <goals>
              <goal>enforce</goal>
            </goals>
            <configuration>
              <rules>
                <restrictImports implementation="de.skuzzle.enforcer.restrictimports.rule.RestrictImports">
                  <reason>Avoid KIEv7 API in process implementation</reason>
                  <bannedImports>
                    <bannedImport>org.kie.api.**</bannedImport>
                  </bannedImports>
                  <allowedImports>
                    <!-- we always allow process.* as these will be movable to internal -->
                    <allowedImport>org.kie.api.runtime.process.*</allowedImport>
                  </allowedImports>
                </restrictImports>
                <restrictImports implementation="de.skuzzle.enforcer.restrictimports.rule.RestrictImports">
                  <reason>Avoid Drools API in process implementation</reason>
                  <bannedImports>
                    <bannedImport>org.drools.**</bannedImport>
                  </bannedImports>
                  <allowedImports>
                    <!-- WorkItem is allowed due to Set<WorkItem> (not covariant)
                         in org.drools.core.process.WorkItemManager -->
                    <allowedImport>org.drools.core.process.WorkItem</allowedImport>
                  </allowedImports>
                </restrictImports>
              </rules>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

</project>