You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datafu.apache.org by mh...@apache.org on 2015/05/27 22:18:55 UTC

[1/2] incubator-datafu git commit: DATAFU-84 Add rat exclusion for build-plugin files

Repository: incubator-datafu
Updated Branches:
  refs/heads/master 163fc26ad -> 1f6586877


DATAFU-84 Add rat exclusion for build-plugin files

https://issues.apache.org/jira/browse/DATAFU-84

The multiline code is already mentioned in the LICENSE file.  I think we can add an exclusion then from the rat check.


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

Branch: refs/heads/master
Commit: cd12eb426fe87584d3a4c9318d5c6fd9280544e1
Parents: 163fc26
Author: Matthew Hayes <ma...@gmail.com>
Authored: Thu Nov 27 08:17:08 2014 -0800
Committer: Matthew Hayes <mh...@Matthews-MacBook-Pro-2.local>
Committed: Wed May 27 13:14:59 2015 -0700

----------------------------------------------------------------------
 build.gradle | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-datafu/blob/cd12eb42/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index 57a445a..7b30ead 100644
--- a/build.gradle
+++ b/build.gradle
@@ -66,8 +66,14 @@ rat {
     '**/*.csv',
     '**/*.svg',
     '**/package-list',
-    '**/jquery-2.0.3.min.js',
-    'site/source/stylesheets/normalize.css'
+    '**/jquery-2.0.3.min.js', // see LICENSE
+    'site/source/stylesheets/normalize.css', // see LICENSE
+    // build-plugin files in the Public Domain - see the LICENSE file
+    'build-plugin/**/EcjMultilineProcessor.java',
+    'build-plugin/**/JavacMultilineProcessor.java',
+    'build-plugin/**/Multiline.java',
+    'build-plugin/**/MultilineProcessor.java',
+    'build-plugin/**/javax.annotation.processing.Processor'
   ]
 }
 


[2/2] incubator-datafu git commit: Add missing license to find_dupes.rb

Posted by mh...@apache.org.
Add missing license to find_dupes.rb


Project: http://git-wip-us.apache.org/repos/asf/incubator-datafu/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-datafu/commit/1f658687
Tree: http://git-wip-us.apache.org/repos/asf/incubator-datafu/tree/1f658687
Diff: http://git-wip-us.apache.org/repos/asf/incubator-datafu/diff/1f658687

Branch: refs/heads/master
Commit: 1f658687711ebc753ec66caff946cd978cf93d02
Parents: cd12eb4
Author: Matthew Hayes <ma...@gmail.com>
Authored: Wed May 27 13:17:16 2015 -0700
Committer: Matthew Hayes <ma...@gmail.com>
Committed: Wed May 27 13:18:13 2015 -0700

----------------------------------------------------------------------
 datafu-hourglass/find_dupes.rb | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-datafu/blob/1f658687/datafu-hourglass/find_dupes.rb
----------------------------------------------------------------------
diff --git a/datafu-hourglass/find_dupes.rb b/datafu-hourglass/find_dupes.rb
index dc57f1b..727de2d 100644
--- a/datafu-hourglass/find_dupes.rb
+++ b/datafu-hourglass/find_dupes.rb
@@ -1,3 +1,20 @@
+# 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.
+
 # Uses jarfish to find all duplicate classes from jars listed in the .classpath
 
 require 'nokogiri'