<?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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.neo4j</groupId>
        <artifactId>parent</artifactId>
        <version>5.26.9</version>
        <relativePath>../../pom.xml</relativePath>
    </parent>

    <name>Neo4j - Testing Utils Parent</name>
    <artifactId>testing-parent</artifactId>
    <packaging>pom</packaging>

    <properties>
        <moduleName>org.neo4j.testing.parent</moduleName>
    </properties>

    <build>
        <plugins>
            <plugin>
                <!-- disable only the ban-test-dependencies-in-compile enforcer rule
                since this project creates test utilities -->
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-enforcer-plugin</artifactId>
                <executions>
                    <execution>
                        <id>ban-test-dependencies-in-compile</id>
                        <phase></phase>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

    <modules>
        <module>io-utils</module>
        <module>log-utils</module>
        <module>kernel-api-utils</module>
        <module>test-utils</module>
        <module>import-utils</module>
        <module>storage-engine-utils</module>
        <module>wal-utils</module>
        <module>layout-test-utils</module>
        <module>test-proxy</module>
        <module>random-values</module>
    </modules>
</project>
