blob: fe138f3aa5bb6e744ebf1e6bd6fd57eb3004b654 [file] [log] [blame]
<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>
<!--
- Note that this parent declaration is a little weird; the checkstyle plugin configuration in
- the parent pom references this artifact. Possibly the parent pom should be refactored into
- two parts; the bits we want to inherit here (distributionManagement, mailingLists etc) and
- a separate pom that references this artifact. However this works for now.
-->
<groupId>org.apache.myfaces</groupId>
<artifactId>myfaces</artifactId>
<version>6</version>
</parent>
<groupId>org.apache.myfaces.buildtools</groupId>
<artifactId>checkstyle-rules</artifactId>
<packaging>jar</packaging>
<version>2-SNAPSHOT</version>
<name>checkstyle-rules</name>
<url>http://maven.apache.org</url>
<build>
<resources>
<resource>
<directory>${basedir}</directory>
<targetPath>META-INF</targetPath>
<includes>
<include>NOTICE.txt</include>
<include>LICENSE.txt</include>
</includes>
</resource>
<resource>
<directory>${basedir}/src/main/resources</directory>
</resource>
</resources>
</build>
</project>