<?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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <artifactId>helgoland-parent</artifactId>
        <groupId>org.n52.sensorweb-server.helgoland</groupId>
        <version>3.5.5</version>
    </parent>
    <packaging>jar</packaging>
    <name>Sensor Web Server Helgoland - Web Resources</name>
    <artifactId>helgoland-web-resources</artifactId>

    <properties>
        <finalName>${project.artifactId}</finalName>
        <webappDirectory>${project.build.directory}/${finalName}</webappDirectory>
    </properties>

    <build>
        <resources>
            <resource>
                <directory>src/main/docs</directory>
                <targetPath>docs</targetPath>
            </resource>
            <resource>
                <directory>src/main/static</directory>
                <targetPath>static</targetPath>
            </resource>
        </resources>
    </build>

</project>