From 37771f9abf5618521fb2e164ceef7abdeb244c52 Mon Sep 17 00:00:00 2001 From: Johannes Rudolph Date: Tue, 20 Jun 2023 12:45:08 +0200 Subject: [PATCH] Add note to LICENSE files regarding AbstractBoundedNodeQueue origin Fixes #425 --- LICENSE | 7 +++++++ legal/pekko-actor-jar-license.txt | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/LICENSE b/LICENSE index e08fe49722..385103e5fa 100644 --- a/LICENSE +++ b/LICENSE @@ -235,6 +235,13 @@ in `org.apache.pekko.util.UUIDComparator.scala` which was released under an Apac --------------- +pekko-actor contains code in `org.apache.pekko.dispatch.AbstractBoundedNodeQueue.java` which was based on +code from actors which was released under the Apache 2.0 license, and +code from https://www.1024cores.net/home/lock-free-algorithms/queues/non-intrusive-mpsc-node-based-queue which +was released under the Simplified BSD license. + +--------------- + pekko-cluster contains VectorClock.scala which is derived from code written by Coda Hale . He has agreed to allow us to use this code under an Apache 2.0 license diff --git a/legal/pekko-actor-jar-license.txt b/legal/pekko-actor-jar-license.txt index db1c398266..e4c9997944 100644 --- a/legal/pekko-actor-jar-license.txt +++ b/legal/pekko-actor-jar-license.txt @@ -232,3 +232,10 @@ Copyright 2014 The Netty Project pekko-actor contains code from java-uuid-generator in `org.apache.pekko.util.UUIDComparator.scala` which was released under an Apache 2.0 license. + +--------------- + +pekko-actor contains code in `org.apache.pekko.dispatch.AbstractBoundedNodeQueue.java` which was based on +code from actors which was released under the Apache 2.0 license, and +code from https://www.1024cores.net/home/lock-free-algorithms/queues/non-intrusive-mpsc-node-based-queue which +was released under the Simplified BSD license.