<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>pub.lighting</groupId>
        <artifactId>lighting-config</artifactId>
        <version>1.0.0</version>
    </parent>

    <artifactId>lighting-config-example</artifactId>
    <packaging>pom</packaging>
    <name>lighting-config-example</name>
    <description>Example projects for lighting-config, covering embedded, standalone server, and client usage.</description>

    <properties>
        <!-- Do not publish example artifacts to Central -->
        <central.skip>true</central.skip>
    </properties>

    <modules>
        <module>lighting-config-example-embedded</module>
        <module>lighting-config-example-standalone</module>
        <module>lighting-config-example-client</module>
    </modules>

</project>
