5
0
mirror of https://github.com/apache/sqoop.git synced 2025-05-03 22:02:31 +08:00

[SQOOP-372] License Audit

configure  the maven rat plugin to be part of the lifecycle.
It doesn't complain :-)

git-svn-id: https://svn.apache.org/repos/asf/incubator/sqoop/trunk@1187769 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2011-10-22 20:20:01 +00:00
parent d16bc738e9
commit 7f457e697e

28
pom.xml
View File

@ -335,6 +335,32 @@ limitations under the License.
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<version>0.7</version>
<configuration>
<excludes>
<exclude>.gitignore</exclude>
<exclude>DEPENDENCIES</exclude>
<exclude>README.txt</exclude>
<exclude>*.sh</exclude>
<exclude>.git/**</exclude>
<exclude>.idea/**</exclude>
<exclude>**/.gitattributes</exclude>
<exclude>testdata/hive/scripts/**</exclude>
</excludes>
</configuration>
<executions>
<execution>
<id>rat-check</id>
<goals>
<goal>check</goal>
</goals>
<phase>verify</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
@ -485,7 +511,7 @@ limitations under the License.
</plugins>
</reporting>
</profile>
</profiles>
<repositories>
<repository>