<?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>
        <artifactId>kie-drl</artifactId>
        <groupId>org.kie</groupId>
        <version>8.29.0.Final</version>
    </parent>

    <name>KIE :: DRL :: Implementations</name>
    <description>Different implementations of Drl engines</description>

    <artifactId>kie-drl-implementations</artifactId>
    <packaging>pom</packaging>

    <modules>
        <module>kie-drl-map-input</module>
    </modules>

    <profiles>
        <profile>
        <id>default</id>
        <activation>
            <property>
            <name>!productized</name>
            </property>
        </activation>
        <modules>
            <module>kie-drl-kiesession-local</module>
        </modules>
        </profile>
    </profiles>

    
</project>