Skip to content

Commit

Permalink
pom.xml: ignore .travis.yml for rat plugin
Browse files Browse the repository at this point in the history
Signed-off-by: Pierre-Alexandre Meyer <pierre@ning.com>
  • Loading branch information
Pierre-Alexandre Meyer committed Mar 27, 2012
1 parent a865fb7 commit 3eaed5a
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions pom.xml
Expand Up @@ -191,6 +191,33 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<version>0.7</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
<configuration>
<excludes>
<!-- For some reason, useIdeaDefaultExcludes doesn't pick up .idea directory -->
<exclude>.idea/**</exclude>
<exclude>.git/**</exclude>
<exclude>.gitignore</exclude>
<exclude>README.*</exclude>
<exclude>run.sh</exclude>
<exclude>src/site/**</exclude>
<exclude>doc/**</exclude>
<exclude>dev/**</exclude>
<exclude>.travis.yml</exclude>
</excludes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<issueManagement>
Expand Down

0 comments on commit 3eaed5a

Please sign in to comment.