You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by jh...@apache.org on 2014/08/01 01:41:39 UTC

[20/20] git commit: [OPTIQ-348] Add Apache RAT as maven plugin

[OPTIQ-348] Add Apache RAT as maven plugin


Project: http://git-wip-us.apache.org/repos/asf/incubator-optiq/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-optiq/commit/088236c1
Tree: http://git-wip-us.apache.org/repos/asf/incubator-optiq/tree/088236c1
Diff: http://git-wip-us.apache.org/repos/asf/incubator-optiq/diff/088236c1

Branch: refs/heads/master
Commit: 088236c11bafaba03d7a859cf12e72b734a63adf
Parents: bfa3dae
Author: Julian Hyde <jh...@apache.org>
Authored: Thu Jul 31 16:12:56 2014 -0700
Committer: Julian Hyde <jh...@apache.org>
Committed: Thu Jul 31 16:12:56 2014 -0700

----------------------------------------------------------------------
 pom.xml | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-optiq/blob/088236c1/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 7759ddc..6623f32 100644
--- a/pom.xml
+++ b/pom.xml
@@ -237,6 +237,27 @@ limitations under the License.
           </dependency>
         </dependencies>
       </plugin>
+      <plugin>
+        <groupId>org.apache.rat</groupId>
+        <artifactId>apache-rat-plugin</artifactId>
+        <version>0.10</version>
+        <configuration>
+          <excludes>
+            <exclude>*.md</exclude>
+            <exclude>trace.properties</exclude>
+            <exclude>scratch.txt</exclude>
+            <exclude>src/main/resources/META-INF/services/java.sql.Driver</exclude>
+          </excludes>
+        </configuration>
+        <executions>
+          <execution>
+            <phase>verify</phase>
+            <goals>
+              <goal>check</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
     </plugins>
 
     <pluginManagement>