You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by gm...@apache.org on 2017/04/10 20:26:13 UTC

qpid-dispatch git commit: NO-JIRA - Replaced .rat-excludes with a maven pom file. Run mvn apache-rat:check to run RAT check on the source code

Repository: qpid-dispatch
Updated Branches:
  refs/heads/master cf3a26b7c -> e8a09d1da


NO-JIRA - Replaced .rat-excludes with a maven pom file. Run mvn apache-rat:check to run RAT check on the source code


Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/e8a09d1d
Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/e8a09d1d
Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/e8a09d1d

Branch: refs/heads/master
Commit: e8a09d1daec712d95f81af233a0adf7e836ff163
Parents: cf3a26b
Author: Ganesh Murthy <gm...@redhat.com>
Authored: Mon Apr 10 16:25:54 2017 -0400
Committer: Ganesh Murthy <gm...@redhat.com>
Committed: Mon Apr 10 16:25:54 2017 -0400

----------------------------------------------------------------------
 .rat-excludes | 23 ---------------
 pom.xml       | 85 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 85 insertions(+), 23 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/e8a09d1d/.rat-excludes
----------------------------------------------------------------------
diff --git a/.rat-excludes b/.rat-excludes
deleted file mode 100644
index 4d53361..0000000
--- a/.rat-excludes
+++ /dev/null
@@ -1,23 +0,0 @@
-build/*
-install/*
-.*system_test.dir.*
-.*json
-.*json.in
-client-password-file.txt
-server-password-file-bad.txt
-server-password-file.txt
-v3_ca.ext
-.*rat-excludes
-.*~
-MANIFEST.in
-valgrind.supp
-VERSION.txt
-.gitignore
-.*rhea-min.js
-angular-patternfly.min.js
-angular-patternfly.min.css
-d3.v3.min.js
-jquery.dynatree.min.js
-slider.js
-ui-grid.js
-system_tests_http.txt

http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/e8a09d1d/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..c74f811
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,85 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+  http://www.apache.org/licenses/LICENSE-2.0
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- Run this file like this - mvn apache-rat:check -->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.qpid</groupId>
+    <artifactId>qpid-dispatch</artifactId>
+    <version>0.8.0</version>
+    <name>QpidDispatch</name>
+    <inceptionYear>2013</inceptionYear>
+    <url>https://qpid.apache.org</url>    
+  
+    <description>
+      Qpid Dispatch Router
+    </description>
+    
+    <properties>
+        <maven.compiler.source>1.8</maven.compiler.source>
+        <maven.compiler.target>1.8</maven.compiler.target>
+    </properties>   
+    
+    <build>
+        <pluginManagement>
+            <plugins>
+                <plugin>
+			        <groupId>org.apache.rat</groupId>
+			        <artifactId>apache-rat-plugin</artifactId>
+			        <executions>
+			          <execution>
+			            <phase>verify</phase>
+			            <goals>
+			              <goal>check</goal>
+			            </goals>
+			          </execution>
+			        </executions>
+			        <configuration>
+			            <excludes>
+	                        <exclude>.travis.yml</exclude>
+			                <exclude>.gitignore</exclude>
+			                <exclude>.autotools</exclude>
+			                <exclude>**/angular-patternfly.min.js</exclude>
+			                <exclude>**/angular-patternfly.min.css</exclude>
+			                <exclude>**/d3.v3.min.js</exclude>
+			                <exclude>**/jquery.dynatree.min.js</exclude>
+			                <exclude>**/slider.js</exclude>
+			                <exclude>**/ui-grid.js</exclude>
+    			            <exclude>**/system_tests_http.txt</exclude>
+	       		            <exclude>**/build/</exclude>
+	       		            <exclude>**/target/</exclude>
+			                <exclude>**/install/</exclude>
+    			            <exclude>**/*.lock</exclude>
+        			        <exclude>**/MANIFEST.in</exclude>
+    			            <exclude>**/valgrind.supp</exclude>
+    			            <exclude>**/*.json.in</exclude>
+    			            <exclude>**/*.json</exclude>
+    			            <exclude>**/rhea-min.js</exclude>
+    			            <exclude>**/VERSION.txt</exclude>
+    			            <exclude>**/v3_ca.ext</exclude>
+    			            <exclude>.*system_test.dir.*</exclude>
+    			            <exclude>**/server-password-file.txt</exclude>
+    			            <exclude>**/server-password-file-bad.txt</exclude>
+    			            <exclude>**/client-password-file.txt</exclude>
+    			            <exclude>**/.idea/**</exclude> <!-- This is for ignoring the intellij idea project files -->
+    			            <exclude>**/*~</exclude> <!-- This is for files created by emacs -->
+			            </excludes>		        
+			        </configuration>                
+                </plugin>
+            </plugins>
+        </pluginManagement>        
+    </build>  
+</project>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org