<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>kogito-build-parent</artifactId>
    <version>1.3.0.Final</version>
    <relativePath>../kogito-build-parent/pom.xml</relativePath>
  </parent>
  <artifactId>addons</artifactId>
  <packaging>pom</packaging>
  <name>Kogito :: Add-Ons</name>
  <description>Various Add-Ons to the runtimes modules (administration, monitoring, etc)</description>

  <profiles>
    <profile>
      <id>community</id>
      <activation>
        <activeByDefault>true</activeByDefault>
      </activation>
      <modules>
        <module>persistence</module>
        <module>cloudevents</module>
        <module>events</module>
        <module>jobs</module>
        <module>predictions</module>
        <module>process-management</module>
        <module>process-svg</module>
        <module>tracing</module>
        <module>monitoring</module>
        <module>explainability-addon</module>
      </modules>
    </profile>
    <profile>
      <id>productized</id>
      <activation>
        <property>
          <name>productized</name>
        </property>
      </activation>
      <modules>
        <module>monitoring</module>
      </modules>
    </profile>
  </profiles>

</project>