Repository: polygene-java Updated Branches: refs/heads/develop eaefd4109 -> 849c75da9
Cassandra client depends on a tri-licensed GitBuh project "com.github.jnr:jnr-posix", which is under EPL, LGPL and/or GPL. We are choosing EPL, as that is CatB license in ASF, and allowed. Project: http://git-wip-us.apache.org/repos/asf/polygene-java/repo Commit: http://git-wip-us.apache.org/repos/asf/polygene-java/commit/849c75da Tree: http://git-wip-us.apache.org/repos/asf/polygene-java/tree/849c75da Diff: http://git-wip-us.apache.org/repos/asf/polygene-java/diff/849c75da Branch: refs/heads/develop Commit: 849c75da901365f0b88475315aff7bcb9cf50955 Parents: eaefd41 Author: niclas <[email protected]> Authored: Sat Feb 18 12:53:08 2017 +0800 Committer: niclas <[email protected]> Committed: Sat Feb 18 12:53:08 2017 +0800 ---------------------------------------------------------------------- .../org/apache/polygene/gradle/code/PublishedCodePlugin.groovy | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/polygene-java/blob/849c75da/buildSrc/src/main/groovy/org/apache/polygene/gradle/code/PublishedCodePlugin.groovy ---------------------------------------------------------------------- diff --git a/buildSrc/src/main/groovy/org/apache/polygene/gradle/code/PublishedCodePlugin.groovy b/buildSrc/src/main/groovy/org/apache/polygene/gradle/code/PublishedCodePlugin.groovy index a97b4d9..813c3da 100644 --- a/buildSrc/src/main/groovy/org/apache/polygene/gradle/code/PublishedCodePlugin.groovy +++ b/buildSrc/src/main/groovy/org/apache/polygene/gradle/code/PublishedCodePlugin.groovy @@ -97,6 +97,9 @@ class PublishedCodePlugin implements Plugin<Project> { candidate.license = 'BSD 3-Clause' } + if( candidate.group == 'com.github.jnr' ) { + candidate.license = 'EPL' + } if( candidate.group == 'javax.json' || candidate.group == 'javax.websocket' || candidate.group == 'javax.xml.bind' )
