HBASE-22286 License handling incorrectly lists CDDL/GPLv2+CE as safe to not aggregate.
* Remove cddl/gplv2+ce from list of "default okay" licenses * correct supplemental info for javax activation to specify CDDL 1.1 Signed-off-by: Sakthi <sakthivel.azhaku@gmail.com> Signed-off-by: Esteban Gutierrez <esteban@apache.org>
This commit is contained in:
parent
2067b23c8c
commit
01d3d32b16
|
@ -1340,7 +1340,7 @@ You can redistribute it and/or modify it under either the terms of the
|
|||
## See this FAQ link for justifications: https://www.apache.org/legal/resolved.html
|
||||
##
|
||||
## NB: This list is later compared as lower-case. New entries must also be all lower-case
|
||||
#set($non_aggregate_fine = [ 'public domain', 'new bsd license', 'bsd license', 'bsd', 'bsd 2-clause license', 'mozilla public license version 1.1', 'mozilla public license version 2.0', 'creative commons attribution license, version 2.5', 'cddl/gplv2+ce' ])
|
||||
#set($non_aggregate_fine = [ 'public domain', 'new bsd license', 'bsd license', 'bsd', 'bsd 2-clause license', 'mozilla public license version 1.1', 'mozilla public license version 2.0', 'creative commons attribution license, version 2.5' ])
|
||||
## include LICENSE sections for anything not under ASL2.0
|
||||
#foreach( ${dep} in ${projects} )
|
||||
## if there are no licenses we'll fail the build later, so
|
||||
|
|
|
@ -1161,6 +1161,23 @@ Copyright (c) 2011 FuseSource Corp. All rights reserved.
|
|||
<url>https://glassfish.dev.java.net/public/CDDLv1.0.html</url>
|
||||
<distribution>repo</distribution>
|
||||
<comments>
|
||||
</comments>
|
||||
</license>
|
||||
</licenses>
|
||||
</project>
|
||||
</supplement>
|
||||
<supplement>
|
||||
<project>
|
||||
<groupId>com.sun.activation</groupId>
|
||||
<artifactId>javax.activation</artifactId>
|
||||
<!-- javax.activation is also separately licensed under the GPL version 2 plus the Classpath Exception -->
|
||||
<licenses>
|
||||
<license>
|
||||
<name>CDDL 1.1</name>
|
||||
<url>https://github.com/javaee/activation/blob/master/LICENSE.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
<comments>
|
||||
Copyright (c) 1997-2017 Oracle and/or its affiliates.
|
||||
</comments>
|
||||
</license>
|
||||
</licenses>
|
||||
|
|
Loading…
Reference in New Issue