<?xml version="1.0" encoding="UTF-8"?>
<project 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"
         xmlns="http://maven.apache.org/POM/4.0.0">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.kie.kogito</groupId>
    <artifactId>data-index</artifactId>
    <version>1.38.0.Final</version>
  </parent>
  <artifactId>data-index-service</artifactId>
  <name>Kogito Apps :: Data Index Service</name>
  <packaging>pom</packaging>

  <modules>
    <module>data-index-service-common</module>
    <module>data-index-service-inmemory</module>
  </modules>

  <profiles>
    <profile>
      <id>default</id>
      <activation>
        <property>
          <name>!productized</name>
        </property>
      </activation>
      <modules>
        <module>data-index-service-infinispan</module>
        <module>data-index-service-mongodb</module>
        <module>data-index-service-oracle</module>
        <module>data-index-service-postgresql</module>
      </modules>
    </profile>
    <profile>
      <id>native</id>
      <activation>
        <property>
          <name>native</name>
        </property>
      </activation>
      <properties>
        <quarkus.package.type>jar</quarkus.package.type>
      </properties>
    </profile>
  </profiles>
</project>
