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/01/18 11:26:21 UTC

[incubator-pekko-persistence-cassandra] branch main updated: Using pekko name (#16)

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 3ef5946  Using pekko name (#16)
3ef5946 is described below

commit 3ef594611ad17d411628218a684e030cd8ce1bf6
Author: Nicolas Vollmar <nv...@gmail.com>
AuthorDate: Wed Jan 18 12:26:17 2023 +0100

    Using pekko name (#16)
---
 build.sbt            | 14 +++++++-------
 project/Common.scala | 28 ++++++++++++++--------------
 2 files changed, 21 insertions(+), 21 deletions(-)

diff --git a/build.sbt b/build.sbt
index e07df2a..9c521ed 100644
--- a/build.sbt
+++ b/build.sbt
@@ -14,7 +14,7 @@ lazy val root = project
   .enablePlugins(Common, ScalaUnidocPlugin)
   .disablePlugins(SitePlugin)
   .aggregate(core, cassandraLauncher)
-  .settings(name := "akka-persistence-cassandra-root", publish / skip := true)
+  .settings(name := "pekko-persistence-cassandra-root", publish / skip := true)
 
 lazy val dumpSchema = taskKey[Unit]("Dumps cassandra schema for docs")
 dumpSchema := (core / Test / runMain).toTask(" akka.persistence.cassandra.PrintCreateStatements").value
@@ -25,7 +25,7 @@ lazy val core = project
   .settings(MetaInfLicenseNoticeCopy.settings)
   .dependsOn(cassandraLauncher % Test)
   .settings(
-    name := "akka-persistence-cassandra",
+    name := "pekko-persistence-cassandra",
     libraryDependencies ++= Dependencies.akkaPersistenceCassandraDependencies,
     Compile / packageBin / packageOptions += Package.ManifestAttributes(
       "Automatic-Module-Name" -> "akka.persistence.cassandra"))
@@ -36,7 +36,7 @@ lazy val cassandraLauncher = project
   .enablePlugins(Common)
   .settings(MetaInfLicenseNoticeCopy.settings)
   .settings(
-    name := "akka-persistence-cassandra-launcher",
+    name := "pekko-persistence-cassandra-launcher",
     Compile / managedResourceDirectories += (cassandraBundle / target).value / "bundle",
     Compile / managedResources += (cassandraBundle / assembly).value)
 
@@ -47,7 +47,7 @@ lazy val cassandraBundle = project
   .enablePlugins(Common, AutomateHeaderPlugin)
   .settings(MetaInfLicenseNoticeCopy.settings)
   .settings(
-    name := "akka-persistence-cassandra-bundle",
+    name := "pekko-persistence-cassandra-bundle",
     crossPaths := false,
     autoScalaLibrary := false,
     libraryDependencies += ("org.apache.cassandra" % "cassandra-all" % "3.11.3")
@@ -98,14 +98,14 @@ lazy val docs = project
   .enablePlugins(Common, AkkaParadoxPlugin, ParadoxSitePlugin, PreprocessPlugin, PublishRsyncPlugin)
   .dependsOn(core)
   .settings(
-    name := "Akka Persistence Cassandra",
+    name := "Apache Pekko Persistence Cassandra",
     (Compile / paradox) := (Compile / paradox).dependsOn(root / dumpSchema).value,
     publish / skip := true,
     makeSite := makeSite.dependsOn(LocalRootProject / ScalaUnidoc / doc).value,
     previewPath := (Paradox / siteSubdirName).value,
-    Preprocess / siteSubdirName := s"api/akka-persistence-cassandra/${projectInfoVersion.value}",
+    Preprocess / siteSubdirName := s"api/pekko-persistence-cassandra/${projectInfoVersion.value}",
     Preprocess / sourceDirectory := (LocalRootProject / ScalaUnidoc / unidoc / target).value,
-    Paradox / siteSubdirName := s"docs/akka-persistence-cassandra/${projectInfoVersion.value}",
+    Paradox / siteSubdirName := s"docs/pekko-persistence-cassandra/${projectInfoVersion.value}",
     Compile / paradoxProperties ++= Map(
       "project.url" -> "https://doc.akka.io/docs/akka-persistence-cassandra/current/",
       "canonical.base_url" -> "https://doc.akka.io/docs/akka-persistence-cassandra/current",
diff --git a/project/Common.scala b/project/Common.scala
index 031d42b..0111969 100644
--- a/project/Common.scala
+++ b/project/Common.scala
@@ -15,23 +15,23 @@ object Common extends AutoPlugin {
 
   override def globalSettings =
     Seq(
-      organization := "com.typesafe.akka",
-      organizationName := "Lightbend Inc.",
-      organizationHomepage := Some(url("https://www.lightbend.com/")),
+      organization := "org.apache.pekko",
+      organizationName := "Apache Software Foundation",
+      organizationHomepage := Some(url("https://pekko.apache.org/")),
       startYear := Some(2016),
-      homepage := Some(url("https://akka.io")),
+      homepage := Some(url("https://pekko.apache.org/")),
       // apiURL defined in projectSettings because version.value is not correct here
       scmInfo := Some(
         ScmInfo(
-          url("https://github.com/akka/akka-persistence-cassandra"),
-          "git@github.com:akka/akka-persistence-cassandra.git")),
+          url("https://github.com/apache/incubator-pekko-persistence-cassandra"),
+          "git@github.com:apache/incubator-pekko-persistence-cassandra.git")),
       developers += Developer(
         "contributors",
         "Contributors",
-        "https://gitter.im/akka/dev",
-        url("https://github.com/akka/akka-persistence-cassandra/graphs/contributors")),
+        "dev@pekko.apache.org",
+        url("https://github.com/apache/incubator-pekko-persistence-cassandra/graphs/contributors")),
       licenses := Seq(("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0"))),
-      description := "A Cassandra plugin for Akka Persistence.")
+      description := "A Cassandra plugin for Apache Pekko Persistence.")
 
   override lazy val projectSettings = Seq(
     projectInfoVersion := (if (isSnapshot.value) "snapshot" else version.value),
@@ -42,26 +42,26 @@ object Common extends AutoPlugin {
     Compile / console / scalacOptions --= Seq("-deprecation", "-Xfatal-warnings", "-Xlint", "-Ywarn-unused:imports"),
     Compile / doc / scalacOptions := scalacOptions.value ++ Seq(
       "-doc-title",
-      "Akka Persistence Cassandra",
+      "Apache Pekko Persistence Cassandra",
       "-doc-version",
       version.value,
       "-sourcepath",
       (ThisBuild / baseDirectory).value.toString,
       "-doc-source-url", {
         val branch = if (isSnapshot.value) "master" else s"v${version.value}"
-        s"https://github.com/akka/akka-persistence-cassandra/tree/${branch}€{FILE_PATH_EXT}#L€{FILE_LINE}"
+        s"https://github.com/apache/incubator-pekko-persistence-cassandra/tree/${branch}€{FILE_PATH_EXT}#L€{FILE_LINE}"
       },
       "-doc-canonical-base-url",
       "https://doc.akka.io/api/akka-persistence-cassandra/current/",
       "-skip-packages",
-      "akka.pattern" // for some reason Scaladoc creates this
+      "pekko.pattern" // for some reason Scaladoc creates this
     ),
     Compile / doc / scalacOptions --= Seq("-Xfatal-warnings"),
     scalafmtOnCompile := true,
     autoAPIMappings := true,
     headerLicense := Some(HeaderLicense.Custom(apacheHeader)),
-    sonatypeProfileName := "com.typesafe",
-    Test / logBuffered := System.getProperty("akka.logBufferedTests", "false").toBoolean,
+    sonatypeProfileName := "org.apache.pekko",
+    Test / logBuffered := System.getProperty("pekko.logBufferedTests", "false").toBoolean,
     // show full stack traces and test case durations
     Test / testOptions += Tests.Argument(TestFrameworks.ScalaTest, "-oDF"),
     // -a Show stack traces and exception class name for AssertionErrors.


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