diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 972f11d744..849de21260 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -250,7 +250,7 @@ Pekko uses [MiMa](https://github.com/lightbend/mima) to validate the binary comp PR fails due to binary compatibility issues, you may see an error like this: ``` -[info] akka-stream: found 1 potential binary incompatibilities while checking against com.typesafe.akka:akka-stream_2.12:2.4.2 (filtered 222) +[info] akka-stream: found 1 potential binary incompatibilities while checking against org.apache.pekko:akka-stream_2.12:2.4.2 (filtered 222) [error] * method foldAsync(java.lang.Object,scala.Function2)akka.stream.scaladsl.FlowOps in trait akka.stream.scaladsl.FlowOps is present only in current version [error] filter with: ProblemFilters.exclude[ReversedMissingMethodProblem]("akka.stream.scaladsl.FlowOps.foldAsync") ``` diff --git a/akka-actor/src/main/scala/org/apache/pekko/util/ManifestInfo.scala b/akka-actor/src/main/scala/org/apache/pekko/util/ManifestInfo.scala index 53fd8f3904..3491d8d9ed 100644 --- a/akka-actor/src/main/scala/org/apache/pekko/util/ManifestInfo.scala +++ b/akka-actor/src/main/scala/org/apache/pekko/util/ManifestInfo.scala @@ -35,6 +35,7 @@ object ManifestInfo extends ExtensionId[ManifestInfo] with ExtensionIdProvider { private val BundleVendor = "Bundle-Vendor" private val knownVendors = Set( + "org.apache.pekko", "com.typesafe.akka", "com.lightbend.akka", "Lightbend Inc.", diff --git a/docs/src/main/paradox/actors.md b/docs/src/main/paradox/actors.md index 843e9c7e3f..02d6dc97a4 100644 --- a/docs/src/main/paradox/actors.md +++ b/docs/src/main/paradox/actors.md @@ -7,13 +7,13 @@ To use Classic Actors, add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-actor_$scala.binary.version$" version=PekkoVersion - group2="com.typesafe.akka" + group2="org.apache.pekko" artifact2="akka-testkit_$scala.binary.version$" scope2=test version2=PekkoVersion diff --git a/docs/src/main/paradox/additional/osgi.md b/docs/src/main/paradox/additional/osgi.md index e0ac04621c..dab4267e4f 100644 --- a/docs/src/main/paradox/additional/osgi.md +++ b/docs/src/main/paradox/additional/osgi.md @@ -5,10 +5,10 @@ To use Akka in OSGi, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-osgi_$scala.binary.version$ version=PekkoVersion } diff --git a/docs/src/main/paradox/cluster-client.md b/docs/src/main/paradox/cluster-client.md index dc2ad27766..ae7116a6ef 100644 --- a/docs/src/main/paradox/cluster-client.md +++ b/docs/src/main/paradox/cluster-client.md @@ -14,10 +14,10 @@ It is not advised to build new applications with Cluster Client, and existing us To use Cluster Client, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { -bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion +bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" -group=com.typesafe.akka +group=org.apache.pekko artifact=akka-cluster-tools_$scala.binary.version$ version=PekkoVersion } diff --git a/docs/src/main/paradox/cluster-metrics.md b/docs/src/main/paradox/cluster-metrics.md index 8dcf7389de..6d8a6ff81a 100644 --- a/docs/src/main/paradox/cluster-metrics.md +++ b/docs/src/main/paradox/cluster-metrics.md @@ -5,10 +5,10 @@ To use Cluster Metrics Extension, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-cluster-metrics_$scala.binary.version$ version=PekkoVersion } diff --git a/docs/src/main/paradox/cluster-routing.md b/docs/src/main/paradox/cluster-routing.md index cbd083f347..297fe8b55e 100644 --- a/docs/src/main/paradox/cluster-routing.md +++ b/docs/src/main/paradox/cluster-routing.md @@ -32,10 +32,10 @@ on other nodes in the cluster. To use Cluster aware routers, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-cluster_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/cluster-sharding.md b/docs/src/main/paradox/cluster-sharding.md index 3d0e9d6dd6..ac7f64a23c 100644 --- a/docs/src/main/paradox/cluster-sharding.md +++ b/docs/src/main/paradox/cluster-sharding.md @@ -8,10 +8,10 @@ For the full documentation of this feature and for new projects see @ref:[Cluste To use Cluster Sharding, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-cluster-sharding_$scala.binary.version$ version=PekkoVersion } diff --git a/docs/src/main/paradox/cluster-singleton.md b/docs/src/main/paradox/cluster-singleton.md index 6101b17c8a..6ead786384 100644 --- a/docs/src/main/paradox/cluster-singleton.md +++ b/docs/src/main/paradox/cluster-singleton.md @@ -8,10 +8,10 @@ For the full documentation of this feature and for new projects see @ref:[Cluste To use Cluster Singleton, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-cluster-tools_$scala.binary.version$ version=PekkoVersion } diff --git a/docs/src/main/paradox/cluster-usage.md b/docs/src/main/paradox/cluster-usage.md index ae01162c89..5faa6596c5 100644 --- a/docs/src/main/paradox/cluster-usage.md +++ b/docs/src/main/paradox/cluster-usage.md @@ -24,10 +24,10 @@ recommendation if you don't have other preferences or constraints. To use Akka Cluster add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-cluster_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/coordination.md b/docs/src/main/paradox/coordination.md index 84d408e1fa..f201f0a75a 100644 --- a/docs/src/main/paradox/coordination.md +++ b/docs/src/main/paradox/coordination.md @@ -8,10 +8,10 @@ Akka Coordination is a set of tools for distributed coordination. ## Module info @@dependency[sbt,Gradle,Maven] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-coordination_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/discovery/index.md b/docs/src/main/paradox/discovery/index.md index 69401db0bd..4cc72db0ca 100644 --- a/docs/src/main/paradox/discovery/index.md +++ b/docs/src/main/paradox/discovery/index.md @@ -34,10 +34,10 @@ See @ref:[Migration hints](#migrating-from-akka-management-discovery-before-1-0- ## Module info @@dependency[sbt,Gradle,Maven] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-discovery_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/dispatchers.md b/docs/src/main/paradox/dispatchers.md index ef3c55f856..823306a1ea 100644 --- a/docs/src/main/paradox/dispatchers.md +++ b/docs/src/main/paradox/dispatchers.md @@ -8,10 +8,10 @@ For the full documentation of this feature and for new projects see @ref:[Dispat Dispatchers are part of core Akka, which means that they are part of the akka-actor dependency: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-actor_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/distributed-data.md b/docs/src/main/paradox/distributed-data.md index 7409085b0c..3c9a3b2591 100644 --- a/docs/src/main/paradox/distributed-data.md +++ b/docs/src/main/paradox/distributed-data.md @@ -8,10 +8,10 @@ For the full documentation of this feature and for new projects see @ref:[Distri To use Akka Distributed Data, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-distributed-data_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/distributed-pub-sub.md b/docs/src/main/paradox/distributed-pub-sub.md index d06c826a34..2594674ed3 100644 --- a/docs/src/main/paradox/distributed-pub-sub.md +++ b/docs/src/main/paradox/distributed-pub-sub.md @@ -8,10 +8,10 @@ For the new API see @ref[Distributed Publish Subscribe in Cluster](./typed/distr To use Distributed Publish Subscribe you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-cluster-tools_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/durable-state/persistence-query.md b/docs/src/main/paradox/durable-state/persistence-query.md index 866b98d017..a7d501397a 100644 --- a/docs/src/main/paradox/durable-state/persistence-query.md +++ b/docs/src/main/paradox/durable-state/persistence-query.md @@ -8,10 +8,10 @@ project.description: Query side to Akka Persistence allowing for building CQRS a To use Persistence Query, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-persistence-query_$scala.binary.version$ version=PekkoVersion } diff --git a/docs/src/main/paradox/fault-tolerance.md b/docs/src/main/paradox/fault-tolerance.md index 3a158fe914..603dd0741c 100644 --- a/docs/src/main/paradox/fault-tolerance.md +++ b/docs/src/main/paradox/fault-tolerance.md @@ -8,10 +8,10 @@ For the full documentation of this feature and for new projects see @ref:[fault The concept of fault tolerance relates to actors, so in order to use these make sure to depend on actors: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-actor_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/fsm.md b/docs/src/main/paradox/fsm.md index 59603876a2..ce2b08da46 100644 --- a/docs/src/main/paradox/fsm.md +++ b/docs/src/main/paradox/fsm.md @@ -8,10 +8,10 @@ For the documentation of the new API of this feature and for new projects see @r To use Finite State Machine actors, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-actor_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/futures.md b/docs/src/main/paradox/futures.md index 12283bad99..be00f7f34f 100644 --- a/docs/src/main/paradox/futures.md +++ b/docs/src/main/paradox/futures.md @@ -5,10 +5,10 @@ Akka offers tiny helpers for use with @scala[@scaladoc[Future](scala.concurrent.Future)s]@java[@javadoc[CompletionStage](java.util.concurrent.CompletionStage)]. These are part of Akka's core module: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-actor_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/index-actors.md b/docs/src/main/paradox/index-actors.md index 6f2d788768..afce684da7 100644 --- a/docs/src/main/paradox/index-actors.md +++ b/docs/src/main/paradox/index-actors.md @@ -7,13 +7,13 @@ To use Classic Akka Actors, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-actor_$scala.binary.version$" version=PekkoVersion - group2="com.typesafe.akka" + group2="org.apache.pekko" artifact2="akka-testkit_$scala.binary.version$" scope2=test version2=PekkoVersion diff --git a/docs/src/main/paradox/index-utilities-classic.md b/docs/src/main/paradox/index-utilities-classic.md index d0806682ab..5463bab47d 100644 --- a/docs/src/main/paradox/index-utilities-classic.md +++ b/docs/src/main/paradox/index-utilities-classic.md @@ -5,13 +5,13 @@ To use Utilities, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-actor_$scala.binary.version$" version=PekkoVersion - group2="com.typesafe.akka" + group2="org.apache.pekko" artifact2="akka-testkit_$scala.binary.version$" scope2=test version2=PekkoVersion diff --git a/docs/src/main/paradox/io-tcp.md b/docs/src/main/paradox/io-tcp.md index 6fa9a7a29a..a96331b83b 100644 --- a/docs/src/main/paradox/io-tcp.md +++ b/docs/src/main/paradox/io-tcp.md @@ -8,10 +8,10 @@ project.description: Low level API for using TCP with classic actors. To use TCP, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-actor_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/io-udp.md b/docs/src/main/paradox/io-udp.md index 796fdf55ec..a2d00a54a9 100644 --- a/docs/src/main/paradox/io-udp.md +++ b/docs/src/main/paradox/io-udp.md @@ -8,10 +8,10 @@ project.description: Low level API for using UDP with classic actors. To use UDP, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-actor_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/io.md b/docs/src/main/paradox/io.md index 3b89b56b1c..62e0c30558 100644 --- a/docs/src/main/paradox/io.md +++ b/docs/src/main/paradox/io.md @@ -5,10 +5,10 @@ To use I/O, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-actor_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/logging.md b/docs/src/main/paradox/logging.md index 22f724be3b..3189c15665 100644 --- a/docs/src/main/paradox/logging.md +++ b/docs/src/main/paradox/logging.md @@ -8,10 +8,10 @@ For the new API see @ref[Logging](typed/logging.md). To use Logging, you must at least use the Akka actors dependency in your project, and will most likely want to configure logging via the SLF4J module (@ref:[see below](#slf4j)). @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-actor_$scala.binary.version$" version=PekkoVersion } @@ -348,10 +348,10 @@ Akka provides a logger for [SLF4J](https://www.slf4j.org/). This module is avail It has a single dependency: the slf4j-api jar. In your runtime, you also need a SLF4J backend. We recommend [Logback](https://logback.qos.ch/): @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-slf4j_$scala.binary.version$" version=PekkoVersion group2="ch.qos.logback" diff --git a/docs/src/main/paradox/mailboxes.md b/docs/src/main/paradox/mailboxes.md index 6620d0f1ca..7580813436 100644 --- a/docs/src/main/paradox/mailboxes.md +++ b/docs/src/main/paradox/mailboxes.md @@ -8,10 +8,10 @@ For the full documentation of this feature and for new projects see @ref:[mailbo To use Mailboxes, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-actor_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/multi-node-testing.md b/docs/src/main/paradox/multi-node-testing.md index 4d443c3028..9fe4bc6350 100644 --- a/docs/src/main/paradox/multi-node-testing.md +++ b/docs/src/main/paradox/multi-node-testing.md @@ -8,10 +8,10 @@ project.description: Multi node testing of distributed systems built with Akka. To use Multi Node Testing, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-multi-node-testkit_$scala.binary.version$ version=PekkoVersion scope=test diff --git a/docs/src/main/paradox/persistence-fsm.md b/docs/src/main/paradox/persistence-fsm.md index 1f62d29752..15ff36d5ff 100644 --- a/docs/src/main/paradox/persistence-fsm.md +++ b/docs/src/main/paradox/persistence-fsm.md @@ -7,10 +7,10 @@ Persistent FSMs are part of Akka persistence, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-persistence_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/persistence-journals.md b/docs/src/main/paradox/persistence-journals.md index 2c41afcfcc..e9cd5831c1 100644 --- a/docs/src/main/paradox/persistence-journals.md +++ b/docs/src/main/paradox/persistence-journals.md @@ -102,10 +102,10 @@ In order to help developers build correct and high quality storage plugins, we p The TCK is usable from Java as well as Scala projects. To test your implementation (independently of language) you need to include the akka-persistence-tck dependency: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-persistence-tck_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/persistence-query-leveldb.md b/docs/src/main/paradox/persistence-query-leveldb.md index e8b46b4bac..0ce28d6ee6 100644 --- a/docs/src/main/paradox/persistence-query-leveldb.md +++ b/docs/src/main/paradox/persistence-query-leveldb.md @@ -8,10 +8,10 @@ As a replacement we recommend using [Akka Persistence JDBC](https://doc.akka.io/ To use Persistence Query, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-persistence-query_$scala.binary.version$ version=PekkoVersion } diff --git a/docs/src/main/paradox/persistence-query.md b/docs/src/main/paradox/persistence-query.md index f4f487cd5f..df7ac2172b 100644 --- a/docs/src/main/paradox/persistence-query.md +++ b/docs/src/main/paradox/persistence-query.md @@ -8,10 +8,10 @@ project.description: Query side to Akka Persistence allowing for building CQRS a To use Persistence Query, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-persistence-query_$scala.binary.version$ version=PekkoVersion } diff --git a/docs/src/main/paradox/persistence-schema-evolution.md b/docs/src/main/paradox/persistence-schema-evolution.md index 46bafda83a..169f5d773d 100644 --- a/docs/src/main/paradox/persistence-schema-evolution.md +++ b/docs/src/main/paradox/persistence-schema-evolution.md @@ -5,13 +5,13 @@ This documentation page touches upon @ref[Akka Persistence](persistence.md), so to follow those examples you will want to depend on: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-persistence_$scala.binary.version$" version=PekkoVersion - group2="com.typesafe.akka" + group2="org.apache.pekko" artifact2="akka-persistence-testkit_$scala.binary.version$" version2=PekkoVersion scope2=test diff --git a/docs/src/main/paradox/persistence.md b/docs/src/main/paradox/persistence.md index 5c1406c1a6..57802d0846 100644 --- a/docs/src/main/paradox/persistence.md +++ b/docs/src/main/paradox/persistence.md @@ -11,13 +11,13 @@ For the full documentation of this feature and for new projects see @ref:[Event To use Akka Persistence, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-persistence_$scala.binary.version$" version=PekkoVersion - group2="com.typesafe.akka" + group2="org.apache.pekko" artifact2="akka-persistence-testkit_$scala.binary.version$" version2=PekkoVersion scope2=test diff --git a/docs/src/main/paradox/project/links.md b/docs/src/main/paradox/project/links.md index 3d29d297ee..99c5927a53 100644 --- a/docs/src/main/paradox/project/links.md +++ b/docs/src/main/paradox/project/links.md @@ -28,7 +28,7 @@ Akka uses Git and is hosted at [Github akka/akka](https://github.com/akka/akka). ## Releases Repository All Akka releases are published via Sonatype to Maven Central, see -[search.maven.org](https://search.maven.org/search?q=g:com.typesafe.akka) +[search.maven.org](https://search.maven.org/search?q=g:org.apache.pekko) ## Snapshots Repository @@ -52,7 +52,7 @@ Define the library dependencies with the complete version. For example: @@@vars ``` -libraryDependencies += "com.typesafe.akka" % "akka-remote_$scala.binary.version$" % "2.6.14+72-53943d99-SNAPSHOT" +libraryDependencies += "org.apache.pekko" % "akka-remote_$scala.binary.version$" % "2.6.14+72-53943d99-SNAPSHOT" ``` @@@ @@ -79,7 +79,7 @@ Define the library dependencies with the timestamp as version. For example: ``` - com.typesafe.akka + org.apache.pekko akka-remote_$scala.binary.version$ 2.6.14+72-53943d99-SNAPSHOT diff --git a/docs/src/main/paradox/remoting-artery.md b/docs/src/main/paradox/remoting-artery.md index 2413fb2755..54047b5796 100644 --- a/docs/src/main/paradox/remoting-artery.md +++ b/docs/src/main/paradox/remoting-artery.md @@ -23,10 +23,10 @@ If migrating from classic remoting see @ref:[what's new in Artery](#what-is-new- To use Artery Remoting, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-remote_$scala.binary.version$ version=PekkoVersion } diff --git a/docs/src/main/paradox/remoting.md b/docs/src/main/paradox/remoting.md index 141ab9e454..695843f363 100644 --- a/docs/src/main/paradox/remoting.md +++ b/docs/src/main/paradox/remoting.md @@ -25,10 +25,10 @@ such as [HTTP](https://doc.akka.io/docs/akka-http/current/), To use Akka Remoting, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-remote_$scala.binary.version$ version=PekkoVersion } diff --git a/docs/src/main/paradox/routing.md b/docs/src/main/paradox/routing.md index 89ad1ab365..7a1bd64c7f 100644 --- a/docs/src/main/paradox/routing.md +++ b/docs/src/main/paradox/routing.md @@ -8,10 +8,10 @@ For the documentation of the new API of this feature and for new projects see @r To use Routing, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-actor_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/scheduler.md b/docs/src/main/paradox/scheduler.md index b0f8aede18..1790e662db 100644 --- a/docs/src/main/paradox/scheduler.md +++ b/docs/src/main/paradox/scheduler.md @@ -11,10 +11,10 @@ For the new API see @ref:[typed scheduling](typed/interaction-patterns.md#typed- To use Scheduler, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-actor_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/serialization-classic.md b/docs/src/main/paradox/serialization-classic.md index 8ded554cb0..72fe1b916e 100644 --- a/docs/src/main/paradox/serialization-classic.md +++ b/docs/src/main/paradox/serialization-classic.md @@ -10,10 +10,10 @@ aside from serialization of `ActorRef` that is described @ref:[here](#serializin To use Serialization, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-actor_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/serialization-jackson.md b/docs/src/main/paradox/serialization-jackson.md index bc21fab4f3..7c891bc472 100644 --- a/docs/src/main/paradox/serialization-jackson.md +++ b/docs/src/main/paradox/serialization-jackson.md @@ -8,10 +8,10 @@ project.description: Serialization with Jackson for Akka. To use Jackson Serialization, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-serialization-jackson_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/serialization.md b/docs/src/main/paradox/serialization.md index 90eed9aaa5..ee5ef73c1c 100644 --- a/docs/src/main/paradox/serialization.md +++ b/docs/src/main/paradox/serialization.md @@ -8,10 +8,10 @@ project.description: Serialization APIs built into Akka. To use Serialization, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-actor_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/split-brain-resolver.md b/docs/src/main/paradox/split-brain-resolver.md index 30778f04f4..98e2aded42 100644 --- a/docs/src/main/paradox/split-brain-resolver.md +++ b/docs/src/main/paradox/split-brain-resolver.md @@ -16,10 +16,10 @@ To use Akka Split Brain Resolver is part of `akka-cluster` and you probably alre dependency included. Otherwise, add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-cluster_$scala.binary.version$ version=PekkoVersion } diff --git a/docs/src/main/paradox/stream/actor-interop.md b/docs/src/main/paradox/stream/actor-interop.md index 905863cb91..8e3e40c25e 100644 --- a/docs/src/main/paradox/stream/actor-interop.md +++ b/docs/src/main/paradox/stream/actor-interop.md @@ -5,10 +5,10 @@ To use Akka Streams, add the module to your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-stream_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/stream/futures-interop.md b/docs/src/main/paradox/stream/futures-interop.md index ce371e5f7a..abc553eb26 100644 --- a/docs/src/main/paradox/stream/futures-interop.md +++ b/docs/src/main/paradox/stream/futures-interop.md @@ -5,10 +5,10 @@ To use Akka Streams, add the module to your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-stream_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/stream/index.md b/docs/src/main/paradox/stream/index.md index 23bbf8271d..5009ca3aa4 100644 --- a/docs/src/main/paradox/stream/index.md +++ b/docs/src/main/paradox/stream/index.md @@ -8,13 +8,13 @@ project.description: An intuitive and safe way to do asynchronous, non-blocking To use Akka Streams, add the module to your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-stream_$scala.binary.version$" version=PekkoVersion - group2="com.typesafe.akka" + group2="org.apache.pekko" artifact2="akka-stream-testkit_$scala.binary.version$" version2=PekkoVersion scope2=test diff --git a/docs/src/main/paradox/stream/operators/ActorFlow/ask.md b/docs/src/main/paradox/stream/operators/ActorFlow/ask.md index e66427280b..298a5cac27 100644 --- a/docs/src/main/paradox/stream/operators/ActorFlow/ask.md +++ b/docs/src/main/paradox/stream/operators/ActorFlow/ask.md @@ -9,10 +9,10 @@ Use the "Ask Pattern" to send each stream element as an `ask` to the target acto This operator is included in: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-stream-typed_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/stream/operators/ActorFlow/askWithContext.md b/docs/src/main/paradox/stream/operators/ActorFlow/askWithContext.md index 34f1093d29..ec9e5580fa 100644 --- a/docs/src/main/paradox/stream/operators/ActorFlow/askWithContext.md +++ b/docs/src/main/paradox/stream/operators/ActorFlow/askWithContext.md @@ -9,10 +9,10 @@ Use the "Ask Pattern" to send each stream element (without the context) as an `a This operator is included in: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-stream-typed_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/stream/operators/ActorFlow/askWithStatus.md b/docs/src/main/paradox/stream/operators/ActorFlow/askWithStatus.md index 8cc9c88c7f..432bda77c3 100644 --- a/docs/src/main/paradox/stream/operators/ActorFlow/askWithStatus.md +++ b/docs/src/main/paradox/stream/operators/ActorFlow/askWithStatus.md @@ -11,7 +11,7 @@ This operator is included in: @@dependency[sbt,Maven,Gradle] { symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-stream-typed_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/stream/operators/ActorFlow/askWithStatusAndContext.md b/docs/src/main/paradox/stream/operators/ActorFlow/askWithStatusAndContext.md index 435fa94894..ca498bb4bc 100644 --- a/docs/src/main/paradox/stream/operators/ActorFlow/askWithStatusAndContext.md +++ b/docs/src/main/paradox/stream/operators/ActorFlow/askWithStatusAndContext.md @@ -9,10 +9,10 @@ Use the "Ask Pattern" to send each stream element (without the context) as an `a This operator is included in: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-stream-typed_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/stream/operators/ActorSink/actorRef.md b/docs/src/main/paradox/stream/operators/ActorSink/actorRef.md index 103b13f9ec..913620770b 100644 --- a/docs/src/main/paradox/stream/operators/ActorSink/actorRef.md +++ b/docs/src/main/paradox/stream/operators/ActorSink/actorRef.md @@ -9,10 +9,10 @@ Sends the elements of the stream to the given @java[`ActorRef`]@scala[`ActorR This operator is included in: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-stream-typed_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/stream/operators/ActorSink/actorRefWithBackpressure.md b/docs/src/main/paradox/stream/operators/ActorSink/actorRefWithBackpressure.md index 46a2583483..4dbe4d6464 100644 --- a/docs/src/main/paradox/stream/operators/ActorSink/actorRefWithBackpressure.md +++ b/docs/src/main/paradox/stream/operators/ActorSink/actorRefWithBackpressure.md @@ -9,10 +9,10 @@ Sends the elements of the stream to the given @java[`ActorRef`]@scala[`ActorR This operator is included in: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-stream-typed_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/stream/operators/ActorSource/actorRef.md b/docs/src/main/paradox/stream/operators/ActorSource/actorRef.md index e582b89843..595eccc34d 100644 --- a/docs/src/main/paradox/stream/operators/ActorSource/actorRef.md +++ b/docs/src/main/paradox/stream/operators/ActorSource/actorRef.md @@ -9,10 +9,10 @@ Materialize an @java[`ActorRef`]@scala[`ActorRef[T]`] of the new actors API; This operator is included in: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-stream-typed_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/stream/operators/ActorSource/actorRefWithBackpressure.md b/docs/src/main/paradox/stream/operators/ActorSource/actorRefWithBackpressure.md index 29a61e496a..f64b7ebc47 100644 --- a/docs/src/main/paradox/stream/operators/ActorSource/actorRefWithBackpressure.md +++ b/docs/src/main/paradox/stream/operators/ActorSource/actorRefWithBackpressure.md @@ -9,10 +9,10 @@ Materialize an @java[`ActorRef`]@scala[`ActorRef[T]`] of the new actors API; This operator is included in: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-stream-typed_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/stream/operators/PubSub/sink.md b/docs/src/main/paradox/stream/operators/PubSub/sink.md index 5769b58556..a464d713c9 100644 --- a/docs/src/main/paradox/stream/operators/PubSub/sink.md +++ b/docs/src/main/paradox/stream/operators/PubSub/sink.md @@ -14,10 +14,10 @@ If the topic does not have any subscribers when a message is published, or the t This operator is included in: @@dependency[sbt,Maven,Gradle] { -bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion +bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" -group="com.typesafe.akka" +group="org.apache.pekko" artifact="akka-stream-typed_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/stream/operators/PubSub/source.md b/docs/src/main/paradox/stream/operators/PubSub/source.md index d4783e508e..f694522d87 100644 --- a/docs/src/main/paradox/stream/operators/PubSub/source.md +++ b/docs/src/main/paradox/stream/operators/PubSub/source.md @@ -17,10 +17,10 @@ strategy. This operator is included in: @@dependency[sbt,Maven,Gradle] { -bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion +bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" -group="com.typesafe.akka" +group="org.apache.pekko" artifact="akka-stream-typed_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/stream/operators/Source/range.md b/docs/src/main/paradox/stream/operators/Source/range.md index 778b03069d..612919e188 100644 --- a/docs/src/main/paradox/stream/operators/Source/range.md +++ b/docs/src/main/paradox/stream/operators/Source/range.md @@ -7,10 +7,10 @@ Emit each integer in a range, with an option to take bigger steps than 1. ## Dependency @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-stream_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/stream/reactive-streams-interop.md b/docs/src/main/paradox/stream/reactive-streams-interop.md index 139f6da28a..24419f9f96 100644 --- a/docs/src/main/paradox/stream/reactive-streams-interop.md +++ b/docs/src/main/paradox/stream/reactive-streams-interop.md @@ -5,10 +5,10 @@ To use Akka Streams, add the module to your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-stream_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/stream/stream-composition.md b/docs/src/main/paradox/stream/stream-composition.md index 31f3fc2725..4f16cb1a93 100644 --- a/docs/src/main/paradox/stream/stream-composition.md +++ b/docs/src/main/paradox/stream/stream-composition.md @@ -5,10 +5,10 @@ To use Akka Streams, add the module to your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-stream_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/stream/stream-cookbook.md b/docs/src/main/paradox/stream/stream-cookbook.md index ed64c31286..ac7a26eda2 100644 --- a/docs/src/main/paradox/stream/stream-cookbook.md +++ b/docs/src/main/paradox/stream/stream-cookbook.md @@ -5,10 +5,10 @@ To use Akka Streams, add the module to your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-stream_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/stream/stream-customize.md b/docs/src/main/paradox/stream/stream-customize.md index 62ab8e1f0c..5635f2faec 100644 --- a/docs/src/main/paradox/stream/stream-customize.md +++ b/docs/src/main/paradox/stream/stream-customize.md @@ -5,10 +5,10 @@ To use Akka Streams, add the module to your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-stream_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/stream/stream-dynamic.md b/docs/src/main/paradox/stream/stream-dynamic.md index 37dbbff645..ed354066d2 100644 --- a/docs/src/main/paradox/stream/stream-dynamic.md +++ b/docs/src/main/paradox/stream/stream-dynamic.md @@ -5,10 +5,10 @@ To use Akka Streams, add the module to your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-stream_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/stream/stream-error.md b/docs/src/main/paradox/stream/stream-error.md index 6445e660dd..dfc5fba239 100644 --- a/docs/src/main/paradox/stream/stream-error.md +++ b/docs/src/main/paradox/stream/stream-error.md @@ -5,10 +5,10 @@ To use Akka Streams, add the module to your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-stream_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/stream/stream-flows-and-basics.md b/docs/src/main/paradox/stream/stream-flows-and-basics.md index 9cb4f01bbf..b61e500c45 100644 --- a/docs/src/main/paradox/stream/stream-flows-and-basics.md +++ b/docs/src/main/paradox/stream/stream-flows-and-basics.md @@ -5,10 +5,10 @@ To use Akka Streams, add the module to your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-stream_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/stream/stream-graphs.md b/docs/src/main/paradox/stream/stream-graphs.md index 26a185645c..54c71754e9 100644 --- a/docs/src/main/paradox/stream/stream-graphs.md +++ b/docs/src/main/paradox/stream/stream-graphs.md @@ -5,10 +5,10 @@ To use Akka Streams, add the module to your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-stream_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/stream/stream-io.md b/docs/src/main/paradox/stream/stream-io.md index adbafe2968..d8fd622b54 100644 --- a/docs/src/main/paradox/stream/stream-io.md +++ b/docs/src/main/paradox/stream/stream-io.md @@ -5,10 +5,10 @@ To use Akka Streams, add the module to your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-stream_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/stream/stream-parallelism.md b/docs/src/main/paradox/stream/stream-parallelism.md index 2e39e3ae03..6b7ab42d20 100644 --- a/docs/src/main/paradox/stream/stream-parallelism.md +++ b/docs/src/main/paradox/stream/stream-parallelism.md @@ -5,10 +5,10 @@ To use Akka Streams, add the module to your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-stream_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/stream/stream-quickstart.md b/docs/src/main/paradox/stream/stream-quickstart.md index 8276473360..bbc859feec 100644 --- a/docs/src/main/paradox/stream/stream-quickstart.md +++ b/docs/src/main/paradox/stream/stream-quickstart.md @@ -5,10 +5,10 @@ To use Akka Streams, add the module to your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-stream_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/stream/stream-rate.md b/docs/src/main/paradox/stream/stream-rate.md index 046011ff27..84b818ad73 100644 --- a/docs/src/main/paradox/stream/stream-rate.md +++ b/docs/src/main/paradox/stream/stream-rate.md @@ -5,10 +5,10 @@ To use Akka Streams, add the module to your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-stream_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/stream/stream-refs.md b/docs/src/main/paradox/stream/stream-refs.md index e0557c78f5..f58e0ea818 100644 --- a/docs/src/main/paradox/stream/stream-refs.md +++ b/docs/src/main/paradox/stream/stream-refs.md @@ -5,10 +5,10 @@ To use Akka Streams, add the module to your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-stream_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/stream/stream-substream.md b/docs/src/main/paradox/stream/stream-substream.md index a826815941..456b6831a7 100644 --- a/docs/src/main/paradox/stream/stream-substream.md +++ b/docs/src/main/paradox/stream/stream-substream.md @@ -5,10 +5,10 @@ To use Akka Streams, add the module to your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-stream_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/stream/stream-testkit.md b/docs/src/main/paradox/stream/stream-testkit.md index 1107ee725b..e8acc07f4c 100644 --- a/docs/src/main/paradox/stream/stream-testkit.md +++ b/docs/src/main/paradox/stream/stream-testkit.md @@ -5,10 +5,10 @@ To use Akka Stream TestKit, add the module to your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-stream-testkit_$scala.binary.version$" version=PekkoVersion scope="test" diff --git a/docs/src/main/paradox/testing.md b/docs/src/main/paradox/testing.md index 5e5ff8671e..60069a80df 100644 --- a/docs/src/main/paradox/testing.md +++ b/docs/src/main/paradox/testing.md @@ -8,10 +8,10 @@ For the new API see @ref[testing](typed/testing.md). To use Akka Testkit, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-testkit_$scala.binary.version$" version=PekkoVersion scope="test" diff --git a/docs/src/main/paradox/typed/actor-discovery.md b/docs/src/main/paradox/typed/actor-discovery.md index 578fe7f20d..d1f3778b0f 100644 --- a/docs/src/main/paradox/typed/actor-discovery.md +++ b/docs/src/main/paradox/typed/actor-discovery.md @@ -7,10 +7,10 @@ You are viewing the documentation for the new actor APIs, to view the Akka Class To use Akka Actor Typed, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-actor-typed_$scala.binary.version$ version=PekkoVersion } diff --git a/docs/src/main/paradox/typed/actor-lifecycle.md b/docs/src/main/paradox/typed/actor-lifecycle.md index 16d1ff3145..10a5ae62dc 100644 --- a/docs/src/main/paradox/typed/actor-lifecycle.md +++ b/docs/src/main/paradox/typed/actor-lifecycle.md @@ -10,10 +10,10 @@ You are viewing the documentation for the new actor APIs, to view the Akka Class To use Akka Actor Typed, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-actor-typed_$scala.binary.version$ version=PekkoVersion } diff --git a/docs/src/main/paradox/typed/actors.md b/docs/src/main/paradox/typed/actors.md index a936af1e6c..1c645065d4 100644 --- a/docs/src/main/paradox/typed/actors.md +++ b/docs/src/main/paradox/typed/actors.md @@ -10,13 +10,13 @@ You are viewing the documentation for the new actor APIs, to view the Akka Class To use Akka Actors, add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-actor-typed_$scala.binary.version$ version=PekkoVersion - group2=com.typesafe.akka + group2=org.apache.pekko artifact2=akka-actor-testkit-typed_$scala.binary.version$ version2=PekkoVersion scope2=test diff --git a/docs/src/main/paradox/typed/cluster-dc.md b/docs/src/main/paradox/typed/cluster-dc.md index a03592e1fe..b429358a2b 100644 --- a/docs/src/main/paradox/typed/cluster-dc.md +++ b/docs/src/main/paradox/typed/cluster-dc.md @@ -19,10 +19,10 @@ up a large cluster into smaller groups of nodes for better scalability. To use Akka Cluster add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-cluster-typed_$scala.binary.version$ version=PekkoVersion } diff --git a/docs/src/main/paradox/typed/cluster-sharded-daemon-process.md b/docs/src/main/paradox/typed/cluster-sharded-daemon-process.md index ca4bd5e2a4..dc8ecc1e62 100644 --- a/docs/src/main/paradox/typed/cluster-sharded-daemon-process.md +++ b/docs/src/main/paradox/typed/cluster-sharded-daemon-process.md @@ -5,10 +5,10 @@ To use Akka Sharded Daemon Process, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-cluster-sharding-typed_$scala.binary.version$ version=PekkoVersion } diff --git a/docs/src/main/paradox/typed/cluster-sharding.md b/docs/src/main/paradox/typed/cluster-sharding.md index b87d4bf37c..a585343a40 100644 --- a/docs/src/main/paradox/typed/cluster-sharding.md +++ b/docs/src/main/paradox/typed/cluster-sharding.md @@ -10,10 +10,10 @@ You are viewing the documentation for the new actor APIs, to view the Akka Class To use Akka Cluster Sharding, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-cluster-sharding-typed_$scala.binary.version$ version=PekkoVersion } diff --git a/docs/src/main/paradox/typed/cluster-singleton.md b/docs/src/main/paradox/typed/cluster-singleton.md index e9e34aaaca..4625b1daeb 100644 --- a/docs/src/main/paradox/typed/cluster-singleton.md +++ b/docs/src/main/paradox/typed/cluster-singleton.md @@ -7,10 +7,10 @@ You are viewing the documentation for the new actor APIs, to view the Akka Class To use Cluster Singleton, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-cluster-typed_$scala.binary.version$ version=PekkoVersion } diff --git a/docs/src/main/paradox/typed/cluster.md b/docs/src/main/paradox/typed/cluster.md index 37745f0b3f..6c88c0f27f 100644 --- a/docs/src/main/paradox/typed/cluster.md +++ b/docs/src/main/paradox/typed/cluster.md @@ -26,10 +26,10 @@ recommendation if you don't have other preferences or constraints. To use Akka Cluster add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-cluster-typed_$scala.binary.version$ version=PekkoVersion } diff --git a/docs/src/main/paradox/typed/coexisting.md b/docs/src/main/paradox/typed/coexisting.md index 582b0d599b..f9c5d98237 100644 --- a/docs/src/main/paradox/typed/coexisting.md +++ b/docs/src/main/paradox/typed/coexisting.md @@ -5,10 +5,10 @@ To use Akka Actor Typed, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-actor-typed_$scala.binary.version$ version=PekkoVersion } diff --git a/docs/src/main/paradox/typed/dispatchers.md b/docs/src/main/paradox/typed/dispatchers.md index 9247e3a24c..18cdf6c22e 100644 --- a/docs/src/main/paradox/typed/dispatchers.md +++ b/docs/src/main/paradox/typed/dispatchers.md @@ -11,10 +11,10 @@ Dispatchers are part of core Akka, which means that they are part of the `akka-a page describes how to use dispatchers with `akka-actor-typed`, which has dependency: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-actor-typed_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/typed/distributed-data.md b/docs/src/main/paradox/typed/distributed-data.md index c632b9dccd..8c4b9e509c 100644 --- a/docs/src/main/paradox/typed/distributed-data.md +++ b/docs/src/main/paradox/typed/distributed-data.md @@ -10,10 +10,10 @@ You are viewing the documentation for the new actor APIs, to view the Akka Class To use Akka Cluster Distributed Data, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-cluster-typed_$scala.binary.version$ version=PekkoVersion } diff --git a/docs/src/main/paradox/typed/distributed-pub-sub.md b/docs/src/main/paradox/typed/distributed-pub-sub.md index 83158e81e5..7e81dc323c 100644 --- a/docs/src/main/paradox/typed/distributed-pub-sub.md +++ b/docs/src/main/paradox/typed/distributed-pub-sub.md @@ -8,10 +8,10 @@ The distributed publish subscribe topic API is available and usable with the cor when used in a clustered application: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-cluster-typed_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/typed/durable-state/persistence.md b/docs/src/main/paradox/typed/durable-state/persistence.md index 6bafbf111a..e389e16a5f 100644 --- a/docs/src/main/paradox/typed/durable-state/persistence.md +++ b/docs/src/main/paradox/typed/durable-state/persistence.md @@ -8,13 +8,13 @@ project.description: Durable State with Akka Persistence enables actors to persi To use Akka Persistence, add the module to your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-persistence-typed_$scala.binary.version$ version=PekkoVersion - group2=com.typesafe.akka + group2=org.apache.pekko artifact2=akka-persistence-testkit_$scala.binary.version$ version2=PekkoVersion scope2=test diff --git a/docs/src/main/paradox/typed/from-classic.md b/docs/src/main/paradox/typed/from-classic.md index 499f484366..4587514dbf 100644 --- a/docs/src/main/paradox/typed/from-classic.md +++ b/docs/src/main/paradox/typed/from-classic.md @@ -26,10 +26,10 @@ module, with a few exceptions. For example `akka-cluster-typed`: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-cluster-typed_$scala.binary.version$ version=PekkoVersion } diff --git a/docs/src/main/paradox/typed/guide/modules.md b/docs/src/main/paradox/typed/guide/modules.md index 7d1b0cc072..5ed4e325d5 100644 --- a/docs/src/main/paradox/typed/guide/modules.md +++ b/docs/src/main/paradox/typed/guide/modules.md @@ -36,10 +36,10 @@ This page does not list all available modules, but overviews the main functional ### Actor library @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-actor-typed_$scala.binary.version$ version=PekkoVersion } @@ -64,10 +64,10 @@ Challenges that actors solve include the following: ### Remoting @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-remote_$scala.binary.version$ version=PekkoVersion } @@ -90,10 +90,10 @@ Challenges Remoting solves include the following: ### Cluster @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-cluster-typed_$scala.binary.version$ version=PekkoVersion } @@ -116,10 +116,10 @@ Challenges the Cluster module solves include the following: ### Cluster Sharding @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-cluster-sharding-typed_$scala.binary.version$ version=PekkoVersion } @@ -138,10 +138,10 @@ Challenges that Sharding solves include the following: ### Cluster Singleton @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-cluster-singleton_$scala.binary.version$ version=PekkoVersion } @@ -162,10 +162,10 @@ The Singleton module can be used to solve these challenges: ### Persistence @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-persistence-typed_$scala.binary.version$ version=PekkoVersion } @@ -187,10 +187,10 @@ Persistence tackles the following challenges: ### Projections @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-projection-core_$scala.binary.version$ version=PekkoVersion } @@ -207,10 +207,10 @@ Challenges Projections solve include the following: ### Distributed Data @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-cluster-typed_$scala.binary.version$ version=PekkoVersion } @@ -229,10 +229,10 @@ Distributed Data is intended to solve the following challenges: ### Streams @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-stream-typed_$scala.binary.version$ version=PekkoVersion } diff --git a/docs/src/main/paradox/typed/guide/tutorial_1.md b/docs/src/main/paradox/typed/guide/tutorial_1.md index ea4e5e9d77..0a13760d21 100644 --- a/docs/src/main/paradox/typed/guide/tutorial_1.md +++ b/docs/src/main/paradox/typed/guide/tutorial_1.md @@ -5,10 +5,10 @@ Add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-actor-typed_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/typed/interaction-patterns.md b/docs/src/main/paradox/typed/interaction-patterns.md index ecfe37dbdf..6525959f70 100644 --- a/docs/src/main/paradox/typed/interaction-patterns.md +++ b/docs/src/main/paradox/typed/interaction-patterns.md @@ -7,10 +7,10 @@ You are viewing the documentation for the new actor APIs, to view the Akka Class To use Akka Actor Typed, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-actor-typed_$scala.binary.version$ version=PekkoVersion } diff --git a/docs/src/main/paradox/typed/logging.md b/docs/src/main/paradox/typed/logging.md index 99915b3a79..ddee01acdb 100644 --- a/docs/src/main/paradox/typed/logging.md +++ b/docs/src/main/paradox/typed/logging.md @@ -11,10 +11,10 @@ To use Logging, you must at least use the Akka actors dependency in your project via the SLF4J backend, such as Logback configuration. @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-actor-typed_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/typed/mailboxes.md b/docs/src/main/paradox/typed/mailboxes.md index 0ce8d95f42..767d3c7ebd 100644 --- a/docs/src/main/paradox/typed/mailboxes.md +++ b/docs/src/main/paradox/typed/mailboxes.md @@ -8,10 +8,10 @@ Mailboxes are part of core Akka, which means that they are part of the `akka-act page describes how to use mailboxes with `akka-actor-typed`, which has dependency: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-actor-typed_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/typed/persistence-testing.md b/docs/src/main/paradox/typed/persistence-testing.md index dc76188564..558c3f101c 100644 --- a/docs/src/main/paradox/typed/persistence-testing.md +++ b/docs/src/main/paradox/typed/persistence-testing.md @@ -5,13 +5,13 @@ To use Akka Persistence TestKit, add the module to your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group1=com.typesafe.akka + group1=org.apache.pekko artifact1=akka-persistence-typed_$scala.binary.version$ version1=PekkoVersion - group2=com.typesafe.akka + group2=org.apache.pekko artifact2=akka-persistence-testkit_$scala.binary.version$ version2=PekkoVersion scope2=test @@ -63,10 +63,10 @@ Persistence testkit allows to check events saved in a storage, emulate storage o To use the testkit you need to add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-persistence-testkit_$scala.binary.version$" version=PekkoVersion } @@ -200,10 +200,10 @@ the plugins at the same time. To coordinate initialization you can use the `Pers `PersistenceInit` is part of `akka-persistence-testkit` and you need to add the dependency to your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group="com.typesafe.akka" + group="org.apache.pekko" artifact="akka-persistence-testkit_$scala.binary.version$" version=PekkoVersion } diff --git a/docs/src/main/paradox/typed/persistence.md b/docs/src/main/paradox/typed/persistence.md index 85d0bc9053..e0b49923ee 100644 --- a/docs/src/main/paradox/typed/persistence.md +++ b/docs/src/main/paradox/typed/persistence.md @@ -10,13 +10,13 @@ You are viewing the documentation for the new actor APIs, to view the Akka Class To use Akka Persistence, add the module to your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-persistence-typed_$scala.binary.version$ version=PekkoVersion - group2=com.typesafe.akka + group2=org.apache.pekko artifact2=akka-persistence-testkit_$scala.binary.version$ version2=PekkoVersion scope2=test diff --git a/docs/src/main/paradox/typed/reliable-delivery.md b/docs/src/main/paradox/typed/reliable-delivery.md index 8ee89431e1..1b370dc2b5 100644 --- a/docs/src/main/paradox/typed/reliable-delivery.md +++ b/docs/src/main/paradox/typed/reliable-delivery.md @@ -18,10 +18,10 @@ warning or deprecation period. It is also not recommended to use this module in To use reliable delivery, add the module to your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-actor-typed_$scala.binary.version$ version=PekkoVersion } @@ -255,10 +255,10 @@ In that case some of these may already have been processed by the previous worke To use reliable delivery with Cluster Sharding, add the following module to your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-cluster-sharding-typed_$scala.binary.version$ version=PekkoVersion } @@ -364,10 +364,10 @@ Be aware of that a `DurableProducerQueue` will add a substantial performance ove When using the `EventSourcedProducerQueue` the following dependency is needed: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-persistence-typed_$scala.binary.version$ version=PekkoVersion } diff --git a/docs/src/main/paradox/typed/routers.md b/docs/src/main/paradox/typed/routers.md index f5ae6447bc..67adedafd2 100644 --- a/docs/src/main/paradox/typed/routers.md +++ b/docs/src/main/paradox/typed/routers.md @@ -7,10 +7,10 @@ You are viewing the documentation for the new actor APIs, to view the Akka Class To use Akka Actor Typed, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-actor-typed_$scala.binary.version$ version=PekkoVersion } diff --git a/docs/src/main/paradox/typed/stash.md b/docs/src/main/paradox/typed/stash.md index 2d8e4892f4..b6d1554333 100644 --- a/docs/src/main/paradox/typed/stash.md +++ b/docs/src/main/paradox/typed/stash.md @@ -7,10 +7,10 @@ You are viewing the documentation for the new actor APIs, to view the Akka Class To use Akka Actor Typed, you must add the following dependency in your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-actor-typed_$scala.binary.version$ version=PekkoVersion } diff --git a/docs/src/main/paradox/typed/testing.md b/docs/src/main/paradox/typed/testing.md index 652a58d482..f69354fba6 100644 --- a/docs/src/main/paradox/typed/testing.md +++ b/docs/src/main/paradox/typed/testing.md @@ -7,10 +7,10 @@ You are viewing the documentation for the new actor APIs, to view the Akka Class To use Actor TestKit add the module to your project: @@dependency[sbt,Maven,Gradle] { - bomGroup=com.typesafe.akka bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion + bomGroup=org.apache.pekko bomArtifact=akka-bom_$scala.binary.version$ bomVersionSymbols=PekkoVersion symbol1=PekkoVersion value1="$pekko.version$" - group=com.typesafe.akka + group=org.apache.pekko artifact=akka-actor-testkit-typed_$scala.binary.version$ version=PekkoVersion scope=test diff --git a/project/PekkoBuild.scala b/project/PekkoBuild.scala index bd734ab71d..5f685550e0 100644 --- a/project/PekkoBuild.scala +++ b/project/PekkoBuild.scala @@ -30,7 +30,7 @@ object PekkoBuild { val parallelExecutionByDefault = false // TODO: enable this once we're sure it does not break things - lazy val buildSettings = Def.settings(organization := "com.typesafe.akka") + lazy val buildSettings = Def.settings(organization := "org.apache.pekko") lazy val rootSettings = Def.settings( commands += switchVersion, @@ -42,10 +42,9 @@ object PekkoBuild { // used for linking to API docs (overwrites `project-info.version`) ThisBuild / projectInfoVersion := { if (isSnapshot.value) "snapshot" else version.value }) - lazy val mayChangeSettings = Seq(description := """|This module of Pekko is marked as + lazy val mayChangeSettings = Seq(description := """|This module of Apache Pekko is marked as |'may change', which means that it is in early - |access mode, which also means that it is not covered - |by commercial support. An module marked 'may change' doesn't + |access mode. A module marked 'may change' doesn't |have to obey the rule of staying binary compatible |between minor releases. Breaking API changes may be |introduced in minor releases without notice as we