<?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">
  <parent>
    <groupId>org.kie.kogito</groupId>
    <artifactId>data-index</artifactId>
    <version>1.37.0.Final</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>

  <artifactId>data-index-storage</artifactId>
  <packaging>pom</packaging>
  <name>Kogito Apps :: Data Index Storage</name>

  <modules>
    <module>data-index-storage-api</module>
    <module>data-index-storage-protobuf</module>
    <module>data-index-storage-postgresql</module>
  </modules>

  <profiles>
    <profile>
      <id>default</id>
      <activation>
        <property>
          <name>!productized</name>
        </property>
      </activation>
      <modules>
        <module>data-index-storage-infinispan</module>
        <module>data-index-storage-mongodb</module>
        <module>data-index-storage-postgresql-reporting</module>
        <module>data-index-storage-oracle</module>
      </modules>
    </profile>
  </profiles>
</project>