<?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>
        <artifactId>sermant-plugins</artifactId>
        <groupId>com.huaweicloud.sermant</groupId>
        <version>0.3.8</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <packaging>pom</packaging>

    <artifactId>sermant-flowcontrol</artifactId>

    <properties>
        <sermant.basedir>${pom.basedir}/../../..</sermant.basedir>
        <package.plugin.name>flowcontrol</package.plugin.name>
    </properties>

    <profiles>
        <profile>
            <id>agent</id>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
            <modules>
                <module>flowcontrol-common</module>
                <module>flowcontrol-plugin</module>
                <module>flowcontrol-service</module>
            </modules>
        </profile>
        <profile>
            <id>ext</id>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
            <modules>
                <module>flowcontrol-demos</module>
            </modules>
        </profile>
        <profile>
            <id>all</id>
            <modules>
                <module>flowcontrol-common</module>
                <module>flowcontrol-plugin</module>
                <module>flowcontrol-service</module>
            </modules>
        </profile>
        <profile>
            <id>release</id>
            <modules>
                <module>flowcontrol-common</module>
                <module>flowcontrol-plugin</module>
                <module>flowcontrol-service</module>
            </modules>
        </profile>
    </profiles>
</project>
