1<!--
2This file is part of dependency-check-maven.
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8    http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15
16Copyright (c) 2017 Jeremy Long. All Rights Reserved.
17-->
18<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
19         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
20    <modelVersion>4.0.0</modelVersion>
21    <parent>
22        <groupId>org.owasp</groupId>
23        <artifactId>dependency-check-parent</artifactId>
24        <version>3.1.1</version>
25    </parent>
26    <groupId>org.owasp</groupId>
27    <artifactId>dependency-check-plugin</artifactId>
28    <name>Dependency-Check Plugin Archetype</name>
29    <packaging>jar</packaging>
30    <build>
31        <plugins>
32            <plugin>
33                <groupId>org.apache.maven.plugins</groupId>
34                <artifactId>maven-resources-plugin</artifactId>
35                <configuration>
36                    <escapeString>\</escapeString>
37                </configuration>
38            </plugin>
39        </plugins>
40        <resources>
41            <resource>
42                <directory>src/main/resources</directory>
43                <filtering>true</filtering>
44                <includes>
45                    <include>archetype-resources/pom.xml</include>
46                </includes>
47            </resource>
48            <resource>
49                <directory>src/main/resources</directory>
50                <filtering>false</filtering>
51                <excludes>
52                    <exclude>archetype-resources/pom.xml</exclude>
53                </excludes>
54            </resource>
55        </resources>
56    </build>
57</project>
58