<?xml version="1.0"?>
<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.brutusin</groupId>
        <artifactId>rpc-archetypes</artifactId>
        <version>1.9.2</version>
    </parent>
    <groupId>org.brutusin</groupId>
    <artifactId>rpc-tomcat-war</artifactId>
    <packaging>jar</packaging>   
    <version>1.9.2</version>
    <name>${project.groupId}:${project.artifactId}</name>
    <description>Maven archetype for creation of Brutusin-RPC (standalone and deployable) war projects with a Tomcat runtime available for standalone scenarios</description>
       
    <build>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>true</filtering>
                <includes>
                    <include>**/archetype-metadata.xml</include>
                </includes>
            </resource>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>false</filtering>
                <excludes>
                    <exclude>**/archetype-metadata.xml</exclude>
                </excludes>
            </resource>
        </resources>
    </build>
</project>
