You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pekko.apache.org by fa...@apache.org on 2023/02/10 09:52:25 UTC

[incubator-pekko] branch main updated: add DISCLAIMER (#160)

This is an automated email from the ASF dual-hosted git repository.

fanningpj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-pekko.git


The following commit(s) were added to refs/heads/main by this push:
     new 6091fa713d add DISCLAIMER (#160)
6091fa713d is described below

commit 6091fa713d6feaca344bbcf86d8bbeca85326278
Author: PJ Fanning <pj...@users.noreply.github.com>
AuthorDate: Fri Feb 10 10:52:20 2023 +0100

    add DISCLAIMER (#160)
---
 DISCLAIMER                             | 10 ++++++++++
 project/MetaInfLicenseNoticeCopy.scala |  7 +++++--
 2 files changed, 15 insertions(+), 2 deletions(-)

diff --git a/DISCLAIMER b/DISCLAIMER
new file mode 100644
index 0000000000..6a31e0f497
--- /dev/null
+++ b/DISCLAIMER
@@ -0,0 +1,10 @@
+Apache Pekko (incubating) is an effort undergoing incubation at the Apache
+Software Foundation (ASF), sponsored by the Apache Incubator PMC.
+
+Incubation is required of all newly accepted projects until a further review
+indicates that the infrastructure, communications, and decision making process
+have stabilized in a manner consistent with other successful ASF projects.
+
+While incubation status is not necessarily a reflection of the completeness
+or stability of the code, it does indicate that the project has yet to be
+fully endorsed by the ASF.
diff --git a/project/MetaInfLicenseNoticeCopy.scala b/project/MetaInfLicenseNoticeCopy.scala
index 7c6cbc9c54..6e37533375 100644
--- a/project/MetaInfLicenseNoticeCopy.scala
+++ b/project/MetaInfLicenseNoticeCopy.scala
@@ -20,17 +20,20 @@ object MetaInfLicenseNoticeCopy {
   private val protobufApacheLicenseFile = Def.task[File](baseDir.value / "LICENSE")
   private val protobufGoogleLicenseFile = Def.task[File](baseDir.value / "COPYING.protobuf")
   private val noticeFile = Def.task[File](baseDir.value / "NOTICE")
+  private val disclaimerFile = Def.task[File](baseDir.value / "DISCLAIMER")
 
   val settings: Seq[Setting[_]] = inConfig(Compile)(
     Seq(
       resourceGenerators += copyFileToMetaInf(resourceManaged, standardLicenseFile, "LICENSE"),
-      resourceGenerators += copyFileToMetaInf(resourceManaged, noticeFile, "NOTICE")))
+      resourceGenerators += copyFileToMetaInf(resourceManaged, noticeFile, "NOTICE"),
+      resourceGenerators += copyFileToMetaInf(resourceManaged, disclaimerFile, "DISCLAIMER")))
 
   val protobufSettings: Seq[Setting[_]] = inConfig(Compile)(
     Seq(
       resourceGenerators += copyFileToMetaInf(resourceManaged, protobufApacheLicenseFile, "LICENSE"),
       resourceGenerators += copyFileToMetaInf(resourceManaged, protobufGoogleLicenseFile, "COPYING.protobuf"),
-      resourceGenerators += copyFileToMetaInf(resourceManaged, noticeFile, "NOTICE")))
+      resourceGenerators += copyFileToMetaInf(resourceManaged, noticeFile, "NOTICE"),
+      resourceGenerators += copyFileToMetaInf(resourceManaged, disclaimerFile, "DISCLAIMER")))
 
   private def copyFileToMetaInf(dir: SettingKey[File], fromFile: Def.Initialize[Task[File]],
       fileName: String) = Def.task[Seq[File]] {


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pekko.apache.org
For additional commands, e-mail: commits-help@pekko.apache.org