<?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>drools</artifactId>
    <version>1.37.0.Final</version>
  </parent>

  <artifactId>kogito-pmml</artifactId>

  <name>Kogito :: Drools :: Kogito Predictive Model Markup Language</name>
  <description>Kogito wrapper for Kie Drools PMML open source engine</description>
  
  <properties>
    <java.module.name>org.kie.kogito.kogito.pmml</java.module.name>
  </properties>

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

  <dependencies>
    <dependency>
      <groupId>org.kie.kogito</groupId>
      <artifactId>kogito-api</artifactId>
    </dependency>
    <dependency>
      <groupId>org.kie.kogito</groupId>
      <artifactId>kogito-drools</artifactId>
    </dependency>

    <!-- PMML -->
    <dependency>
      <groupId>org.kie.kogito</groupId>
      <artifactId>kogito-pmml-dependencies</artifactId>
      <type>pom</type>
    </dependency>

    <!-- TODO to be removed when importing kie-drl inside kogito -->
    <dependency>
      <groupId>org.kie.kogito</groupId>
      <artifactId>kogito-efesto-drl</artifactId>
      <type>pom</type>
    </dependency>

    <!-- EFESTO -->
    <dependency>
      <groupId>org.kie</groupId>
      <artifactId>efesto-dependencies</artifactId>
    </dependency>

    <!-- test -->
    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-engine</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-params</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.assertj</groupId>
      <artifactId>assertj-core</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>ch.qos.logback</groupId>
      <artifactId>logback-classic</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-databind</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>${jandex-maven-plugin.group-id}</groupId>
        <artifactId>jandex-maven-plugin</artifactId>
      </plugin>
    </plugins>
  </build>

</project>