<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>io.github.missioncommand</groupId>
        <artifactId>mil-sym-java</artifactId>
        <version>0.1.41</version>
        <relativePath>..</relativePath>
    </parent>

    <artifactId>mil-sym-service-parent</artifactId>
    <packaging>pom</packaging>
    <name>mil-sym-java :: Service</name>
    <description>mil-sym-java Service</description>

    <modules>
        <module>mil-sym-service</module>
    </modules>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
    
</project>