Skip to content

Commit

Permalink
Add references to the Pekko based distribution (#316)
Browse files Browse the repository at this point in the history
* Add references to the Pekko based distribution

* Update releases/1.0/documentation/tutorial/setup.md

---------

Co-authored-by: Cédric Chantepie <[email protected]>
  • Loading branch information
SamTheisens and cchantep authored Dec 20, 2023
1 parent cceb3fb commit 2870778
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions _includes/sbt-dependency.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,11 @@ libraryDependencies ++= Seq(
"org.reactivemongo" %% "reactivemongo" % "{{page.major_version}}"
)
```

for Pekko based projects, add the following dependency:

```ocaml
libraryDependencies ++= Seq(
"org.reactivemongo" %% "reactivemongo-pekko" % "{{page.major_version}}"
)
```
1 change: 1 addition & 0 deletions _layouts/slide.html
Original file line number Diff line number Diff line change
Expand Up @@ -654,6 +654,7 @@

- [MongoDB](https://www.mongodb.org/) from 2.6 up to 3.2.
- [Akka](http://akka.io/) from 2.3.13 up to 2.5.x
- [Pekko](https://pekko.apache.org/) from 1.0.1
- [Play Framework](https://playframework.com) from 2.3.13 to 2.5.9

---
Expand Down
7 changes: 7 additions & 0 deletions releases/1.0/documentation/tutorial/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@ If your project already has the Akka dependency, directly or transitively (e.g.

ReactiveMongo is tested against Akka from version 2.3.13 up to 2.6.x (2.6.5 for now).

**Pekko dependency:**

If you use the [Pekko](https://pekko.apache.org/) based distribution and your project that already has a Pekko dependency,
it must be compatible with the version pulled in by ReactiveMongo.

ReactiveMongo is tested against Pekko from version 1.0.x.

**Scalafix:**

A Scalafix module is available to enforce good integration with (or [migrate](../release-details.html#migration) from previous releases).
Expand Down

0 comments on commit 2870778

Please sign in to comment.