aboutsummaryrefslogtreecommitdiff
path: root/assembly
diff options
context:
space:
mode:
authorSean Owen <sowen@cloudera.com>2014-05-14 09:38:33 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-05-14 09:38:33 -0700
commit2e5a7cde223c8bf6d34e46b27ac94a965441584d (patch)
treeaa7d0b52a1b3276b4319222f9996729c30538105 /assembly
parent68f28dabe9c7679be82e684385be216319beb610 (diff)
downloadspark-2e5a7cde223c8bf6d34e46b27ac94a965441584d.tar.gz
spark-2e5a7cde223c8bf6d34e46b27ac94a965441584d.tar.bz2
spark-2e5a7cde223c8bf6d34e46b27ac94a965441584d.zip
SPARK-1827. LICENSE and NOTICE files need a refresh to contain transitive dependency info
LICENSE and NOTICE policy is explained here: http://www.apache.org/dev/licensing-howto.html http://www.apache.org/legal/3party.html This leads to the following changes. First, this change enables two extensions to maven-shade-plugin in assembly/ that will try to include and merge all NOTICE and LICENSE files. This can't hurt. This generates a consolidated NOTICE file that I manually added to NOTICE. Next, a list of all dependencies and their licenses was generated: `mvn ... license:aggregate-add-third-party` to create: `target/generated-sources/license/THIRD-PARTY.txt` Each dependency is listed with one or more licenses. Determine the most-compatible license for each if there is more than one. For "unknown" license dependencies, I manually evaluateD their license. Many are actually Apache projects or components of projects covered already. The only non-trivial one was Colt, which has its own (compatible) license. I ignored Apache-licensed and public domain dependencies as these require no further action (beyond NOTICE above). BSD and MIT licenses (permissive Category A licenses) are evidently supposed to be mentioned in LICENSE, so I added a section without output from the THIRD-PARTY.txt file appropriately. Everything else, Category B licenses, are evidently mentioned in NOTICE (?) Same there. LICENSE contained some license statements for source code that is redistributed. I left this as I think that is the right place to put it. Author: Sean Owen <sowen@cloudera.com> Closes #770 from srowen/SPARK-1827 and squashes the following commits: a764504 [Sean Owen] Add LICENSE and NOTICE info for all transitive dependencies as of 1.0
Diffstat (limited to 'assembly')
-rw-r--r--assembly/pom.xml2
1 files changed, 2 insertions, 0 deletions
diff --git a/assembly/pom.xml b/assembly/pom.xml
index 6c4d46aeb6..abd8935339 100644
--- a/assembly/pom.xml
+++ b/assembly/pom.xml
@@ -122,6 +122,8 @@
<transformer implementation="org.apache.maven.plugins.shade.resource.DontIncludeResourceTransformer">
<resource>log4j.properties</resource>
</transformer>
+ <transformer implementation="org.apache.maven.plugins.shade.resource.ApacheLicenseResourceTransformer"/>
+ <transformer implementation="org.apache.maven.plugins.shade.resource.ApacheNoticeResourceTransformer"/>
</transformers>
</configuration>
</execution>