<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.graphfoundation.ongdb</groupId>
        <artifactId>cypher-parent</artifactId>
        <version>1.0.1</version>
        <relativePath>../../community/cypher/</relativePath>
    </parent>

    <artifactId>cypher-enterprise-parent</artifactId>
    <version>1.0.1</version>
    <packaging>pom</packaging>
    <name>ONgDB - Enterprise Geequel Build</name>
    <description>Project that builds the ONgDB Geequel modules as part of the Enterprise distribution.</description>
    <url>https://graphfoundation.org/projects/ongdb/${project.version}/${project.artifactId}</url>

    <properties>
        <licensing.prepend.text>licensing/notice-agpl-prefix.txt</licensing.prepend.text>
        <license-text.header>headers/AGPL-3-header.txt</license-text.header>
        <opencypher.version>1.0.0-M12</opencypher.version>
        <junit-plattform-runner.version>1.1.0</junit-plattform-runner.version>
        <junit-jupiter.version>5.1.0</junit-jupiter.version>
    </properties>

    <scm>
        <connection>scm:git:git://github.com/graphfoundation/ongdb.git</connection>
        <developerConnection>scm:git:git@github.com:graphfoundation/ongdb.git</developerConnection>
        <url>https://github.com/graphfoundation/ongdb</url>
    </scm>

    <profiles>
        <profile>
            <id>include-cypher</id>
            <activation>
                <property>
                    <name>!skipCypher</name>
                </property>
            </activation>
            <modules>
                <module>spec-suite-tools</module>
                <module>acceptance-spec-suite</module>
                <module>compatibility-spec-suite</module>
                <module>physical-planning</module>
                <module>slotted-runtime</module>
                <module>morsel-runtime</module>
                <module>cypher</module>
            </modules>
        </profile>
    </profiles>

    <build>
        <pluginManagement>
            <plugins>
                <plugin>
                    <groupId>org.scalastyle</groupId>
                    <artifactId>scalastyle-maven-plugin</artifactId>
                    <configuration>
                        <configLocation>${project.basedir}/../../../community/cypher/scalastyle_config.xml</configLocation>
                    </configuration>
                </plugin>
            </plugins>
        </pluginManagement>
    </build>
</project>
