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

[incubator-pekko-persistence-cassandra] branch main updated: Add disclaimer (#17)

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

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


The following commit(s) were added to refs/heads/main by this push:
     new f6968ce  Add disclaimer (#17)
f6968ce is described below

commit f6968cea885bdf61a71a0f8c527c67624e1a24ea
Author: Nicolas Vollmar <nv...@gmail.com>
AuthorDate: Tue Feb 28 10:59:00 2023 +0100

    Add disclaimer (#17)
---
 DISCLAIMER                             | 10 ++++++++++
 build.sbt                              |  2 ++
 project/MetaInfLicenseNoticeCopy.scala |  3 ++-
 3 files changed, 14 insertions(+), 1 deletion(-)

diff --git a/DISCLAIMER b/DISCLAIMER
new file mode 100644
index 0000000..6bfe9b5
--- /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.
\ No newline at end of file
diff --git a/build.sbt b/build.sbt
index 9c521ed..a53f5da 100644
--- a/build.sbt
+++ b/build.sbt
@@ -60,6 +60,7 @@ lazy val cassandraBundle = project
 lazy val endToEndExample = project
   .in(file("example"))
   .dependsOn(core)
+  .settings(MetaInfLicenseNoticeCopy.settings)
   .settings(libraryDependencies ++= Dependencies.exampleDependencies, publish / skip := true)
   .settings(
     dockerBaseImage := "openjdk:8-jre-alpine",
@@ -91,6 +92,7 @@ lazy val endToEndExample = project
 
 lazy val dseTest = project
   .in(file("dse-test"))
+  .settings(MetaInfLicenseNoticeCopy.settings)
   .dependsOn(core % "test->test")
   .settings(libraryDependencies ++= Dependencies.dseTestDependencies)
 
diff --git a/project/MetaInfLicenseNoticeCopy.scala b/project/MetaInfLicenseNoticeCopy.scala
index 4734c4d..311288e 100644
--- a/project/MetaInfLicenseNoticeCopy.scala
+++ b/project/MetaInfLicenseNoticeCopy.scala
@@ -18,7 +18,8 @@ object MetaInfLicenseNoticeCopy {
   val settings: Seq[Setting[_]] = inConfig(Compile)(
     Seq(
       resourceGenerators += copyFileToMetaInf(resourceManaged, "LICENSE"),
-      resourceGenerators += copyFileToMetaInf(resourceManaged, "NOTICE")))
+      resourceGenerators += copyFileToMetaInf(resourceManaged, "NOTICE"),
+      resourceGenerators += copyFileToMetaInf(resourceManaged, "DISCLAIMER")))
 
   def copyFileToMetaInf(dir: SettingKey[File], fileName: String): Def.Initialize[Task[Seq[sbt.File]]] =
     Def.task[Seq[File]] {


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