Skip to content

Commit

Permalink
[ARIES-1809] Run rat plugin by default
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/aries/trunk@1835646 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
alien11689 committed Jul 11, 2018
1 parent 494e70c commit 9e95cb9
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -606,12 +606,15 @@
</profile>
<profile>
<id>rat</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<version>0.6</version>
<version>0.12</version>
<executions>
<execution>
<phase>verify</phase>
Expand All @@ -637,15 +640,21 @@
<!-- exclude Eclipse IDE generated files -->
<exclude>**/.project</exclude>
<exclude>**/.classpath</exclude>
<exclude>**/.settings/**</exclude>
<exclude>**/eclipse-classes/**/*</exclude>
<!-- manifest files don't support comments so don't contain the ASL2.0 header -->
<exclude>**/APPLICATION.MF</exclude>
<exclude>**/MANIFEST.MF</exclude>
<exclude>**/*.MF</exclude>
<!--RAT doesn't seem to recognize MIT style licenses-->
<exclude>manual/src/styles/print.css</exclude>
<!-- RAT doesn't recognize BSD license in transaction-manager logger -->
<exclude>**/objectweb/howl/log/Logger.java</exclude>
<exclude>.gitignore</exclude>
<exclude>README.md</exclude>
<exclude>*.cfg</exclude>
<exclude>**/README.md</exclude>
<exclude>**/Readme.md</exclude>
<exclude>**/NOTICE.vm</exclude>
<exclude>**/dependency-reduced-pom.xml</exclude>
</excludes>
</configuration>
</plugin>
Expand Down

0 comments on commit 9e95cb9

Please sign in to comment.