Author: dennisl
Date: Wed Aug 6 21:00:51 2014
New Revision: 1616347
URL: http://svn.apache.org/r1616347
Log:
Skip animal sniffer for the Rat command line client, since it doesn't have any
source code of its own.
Modified:
creadur/rat/trunk/apache-rat/pom.xml
Modified: creadur/rat/trunk/apache-rat/pom.xml
URL:
http://svn.apache.org/viewvc/creadur/rat/trunk/apache-rat/pom.xml?rev=1616347&r1=1616346&r2=1616347&view=diff
==============================================================================
--- creadur/rat/trunk/apache-rat/pom.xml (original)
+++ creadur/rat/trunk/apache-rat/pom.xml Wed Aug 6 21:00:51 2014
@@ -105,6 +105,19 @@
</archive>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>animal-sniffer-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <!-- This sub project has no source code, so we need to skip
animal sniffer -->
+ <id>check-java-1.5-compat</id>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
</plugins>