mirror of
https://github.com/apache/sqoop.git
synced 2025-05-04 14:50:00 +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:
parent
d16bc738e9
commit
7f457e697e
28
pom.xml
28
pom.xml
@ -335,6 +335,32 @@ limitations under the License.
|
|||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</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>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>exec-maven-plugin</artifactId>
|
<artifactId>exec-maven-plugin</artifactId>
|
||||||
@ -485,7 +511,7 @@ limitations under the License.
|
|||||||
</plugins>
|
</plugins>
|
||||||
</reporting>
|
</reporting>
|
||||||
</profile>
|
</profile>
|
||||||
</profiles>
|
|
||||||
|
|
||||||
<repositories>
|
<repositories>
|
||||||
<repository>
|
<repository>
|
||||||
|
Loading…
Reference in New Issue
Block a user