You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@guacamole.apache.org by vn...@apache.org on 2017/09/27 02:17:59 UTC

[07/29] incubator-guacamole-client git commit: GUACAMOLE-210: Add Apache RAT plugin to guacamole-auth-openid build.

GUACAMOLE-210: Add Apache RAT plugin to guacamole-auth-openid build.


Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/commit/6d46d5cf
Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/tree/6d46d5cf
Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/diff/6d46d5cf

Branch: refs/heads/master
Commit: 6d46d5cfb8307f2f57e14261855e9a72f555c0c4
Parents: 254639f
Author: Michael Jumper <mj...@apache.org>
Authored: Tue Feb 21 11:24:33 2017 -0800
Committer: Michael Jumper <mj...@apache.org>
Committed: Mon Sep 25 13:06:43 2017 -0700

----------------------------------------------------------------------
 extensions/guacamole-auth-openid/pom.xml | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/blob/6d46d5cf/extensions/guacamole-auth-openid/pom.xml
----------------------------------------------------------------------
diff --git a/extensions/guacamole-auth-openid/pom.xml b/extensions/guacamole-auth-openid/pom.xml
index eec5941..698bc12 100644
--- a/extensions/guacamole-auth-openid/pom.xml
+++ b/extensions/guacamole-auth-openid/pom.xml
@@ -73,6 +73,32 @@
                 </executions>
             </plugin>
 
+            <!-- Verify format using Apache RAT -->
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <version>0.12</version>
+
+                <configuration>
+                    <excludes>
+                        <exclude>**/*.json</exclude>
+                        <exclude>src/licenses/**/*</exclude>
+                    </excludes>
+                </configuration>
+
+                <!-- Bind RAT to validate phase -->
+                <executions>
+                    <execution>
+                        <id>validate</id>
+                        <phase>validate</phase>
+                        <goals>
+                            <goal>check</goal>
+                        </goals>
+                    </execution>
+                </executions>
+
+            </plugin>
+
         </plugins>
     </build>