Overview
The Akka Persistence R2DBC plugin allows for using SQL database with R2DBC as a backend for Akka Persistence.
Currently, the R2DBC plugin has support for PostgreSQL and Yugabyte. It is specifically designed to work well for distributed SQL databases.
Create an issue if you would like to contribute support for other databases that has a R2DBC driver.
Project Info
Project Info: Akka Persistence R2DBC | |
---|---|
Artifact | com.lightbend.akka
akka-persistence-r2dbc
1.1.2 |
JDK versions | OpenJDK 8 OpenJDK 11 OpenJDK 17 |
Scala versions | 2.13.10, 2.12.17, 3.2.2 |
JPMS module name | akka.persistence.r2dbc |
License | |
Readiness level | Supported, Lightbend Subscription provides support
Since 1.0.0, 2022-10-25
|
Home page | https://doc.akka.io/docs/akka-persistence-r2dbc/current |
Forums | |
Release notes | Github releases |
Issues | Github issues |
Sources | https://github.com/akka/akka-persistence-r2dbc |
Dependencies
The Akka dependencies are available from Akka’s library repository. To access them there, you need to configure the URL for this repository.
- Maven
<project> ... <repositories> <repository> <id>akka-repository</id> <name>Akka library repository</name> <url>https://repo.akka.io/maven</url> </repository> </repositories> </project>
- sbt
resolvers += "Akka library repository".at("https://repo.akka.io/maven")
- Gradle
repositories { mavenCentral() maven { url "https://repo.akka.io/maven" } }
Additionally, add the dependency as below.
- Maven
<properties> <scala.binary.version>2.13</scala.binary.version> </properties> <dependencies> <dependency> <groupId>com.lightbend.akka</groupId> <artifactId>akka-persistence-r2dbc_${scala.binary.version}</artifactId> <version>1.1.2</version> </dependency> </dependencies>
- sbt
libraryDependencies += "com.lightbend.akka" %% "akka-persistence-r2dbc" % "1.1.2"
- Gradle
def versions = [ ScalaBinary: "2.13" ] dependencies { implementation "com.lightbend.akka:akka-persistence-r2dbc_${versions.ScalaBinary}:1.1.2" }
This plugin depends on Akka 2.8.1 or later, and note that it is important that all akka-*
dependencies are in the same version, so it is recommended to depend on them explicitly to avoid problems with transient dependencies causing an unlucky mix of versions.
- Direct dependencies
Organization Artifact Version com.typesafe.akka akka-persistence-query_2.13 2.8.1 com.typesafe.akka akka-persistence-typed_2.13 2.8.1 io.r2dbc r2dbc-pool 1.0.0.RELEASE io.r2dbc r2dbc-spi 1.0.0.RELEASE org.postgresql r2dbc-postgresql 1.0.1.RELEASE org.scala-lang scala-library 2.13.10 - Dependency tree
com.typesafe.akka akka-persistence-query_2.13 2.8.1 BUSL-1.1 com.typesafe.akka akka-persistence_2.13 2.8.1 BUSL-1.1 com.typesafe.akka akka-actor_2.13 2.8.1 BUSL-1.1 com.typesafe config 1.4.2 Apache-2.0 org.scala-lang.modules scala-java8-compat_2.13 1.0.0 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 com.typesafe.akka akka-stream_2.13 2.8.1 BUSL-1.1 com.typesafe.akka akka-actor_2.13 2.8.1 BUSL-1.1 com.typesafe config 1.4.2 Apache-2.0 org.scala-lang.modules scala-java8-compat_2.13 1.0.0 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 com.typesafe.akka akka-protobuf-v3_2.13 2.8.1 BUSL-1.1 com.typesafe ssl-config-core_2.13 0.6.1 Apache-2.0 com.typesafe config 1.4.2 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.reactivestreams reactive-streams 1.0.4 MIT-0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 com.typesafe.akka akka-protobuf-v3_2.13 2.8.1 BUSL-1.1 com.typesafe.akka akka-stream_2.13 2.8.1 BUSL-1.1 com.typesafe.akka akka-actor_2.13 2.8.1 BUSL-1.1 com.typesafe config 1.4.2 Apache-2.0 org.scala-lang.modules scala-java8-compat_2.13 1.0.0 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 com.typesafe.akka akka-protobuf-v3_2.13 2.8.1 BUSL-1.1 com.typesafe ssl-config-core_2.13 0.6.1 Apache-2.0 com.typesafe config 1.4.2 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.reactivestreams reactive-streams 1.0.4 MIT-0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 com.typesafe.akka akka-persistence-typed_2.13 2.8.1 BUSL-1.1 com.typesafe.akka akka-actor-typed_2.13 2.8.1 BUSL-1.1 com.typesafe.akka akka-actor_2.13 2.8.1 BUSL-1.1 com.typesafe config 1.4.2 Apache-2.0 org.scala-lang.modules scala-java8-compat_2.13 1.0.0 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 com.typesafe.akka akka-slf4j_2.13 2.8.1 BUSL-1.1 com.typesafe.akka akka-actor_2.13 2.8.1 BUSL-1.1 com.typesafe config 1.4.2 Apache-2.0 org.scala-lang.modules scala-java8-compat_2.13 1.0.0 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.slf4j slf4j-api 1.7.36 org.scala-lang scala-library 2.13.10 Apache-2.0 org.slf4j slf4j-api 1.7.36 com.typesafe.akka akka-persistence-query_2.13 2.8.1 BUSL-1.1 com.typesafe.akka akka-persistence_2.13 2.8.1 BUSL-1.1 com.typesafe.akka akka-actor_2.13 2.8.1 BUSL-1.1 com.typesafe config 1.4.2 Apache-2.0 org.scala-lang.modules scala-java8-compat_2.13 1.0.0 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 com.typesafe.akka akka-stream_2.13 2.8.1 BUSL-1.1 com.typesafe.akka akka-actor_2.13 2.8.1 BUSL-1.1 com.typesafe config 1.4.2 Apache-2.0 org.scala-lang.modules scala-java8-compat_2.13 1.0.0 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 com.typesafe.akka akka-protobuf-v3_2.13 2.8.1 BUSL-1.1 com.typesafe ssl-config-core_2.13 0.6.1 Apache-2.0 com.typesafe config 1.4.2 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.reactivestreams reactive-streams 1.0.4 MIT-0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 com.typesafe.akka akka-protobuf-v3_2.13 2.8.1 BUSL-1.1 com.typesafe.akka akka-stream_2.13 2.8.1 BUSL-1.1 com.typesafe.akka akka-actor_2.13 2.8.1 BUSL-1.1 com.typesafe config 1.4.2 Apache-2.0 org.scala-lang.modules scala-java8-compat_2.13 1.0.0 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 com.typesafe.akka akka-protobuf-v3_2.13 2.8.1 BUSL-1.1 com.typesafe ssl-config-core_2.13 0.6.1 Apache-2.0 com.typesafe config 1.4.2 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.reactivestreams reactive-streams 1.0.4 MIT-0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 com.typesafe.akka akka-persistence_2.13 2.8.1 BUSL-1.1 com.typesafe.akka akka-actor_2.13 2.8.1 BUSL-1.1 com.typesafe config 1.4.2 Apache-2.0 org.scala-lang.modules scala-java8-compat_2.13 1.0.0 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 com.typesafe.akka akka-stream_2.13 2.8.1 BUSL-1.1 com.typesafe.akka akka-actor_2.13 2.8.1 BUSL-1.1 com.typesafe config 1.4.2 Apache-2.0 org.scala-lang.modules scala-java8-compat_2.13 1.0.0 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 com.typesafe.akka akka-protobuf-v3_2.13 2.8.1 BUSL-1.1 com.typesafe ssl-config-core_2.13 0.6.1 Apache-2.0 com.typesafe config 1.4.2 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.reactivestreams reactive-streams 1.0.4 MIT-0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 com.typesafe.akka akka-remote_2.13 2.8.1 BUSL-1.1 com.typesafe.akka akka-actor_2.13 2.8.1 BUSL-1.1 com.typesafe config 1.4.2 Apache-2.0 org.scala-lang.modules scala-java8-compat_2.13 1.0.0 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 com.typesafe.akka akka-pki_2.13 2.8.1 BUSL-1.1 com.hierynomus asn-one 0.6.0 The Apache License, Version 2.0 com.typesafe.akka akka-actor_2.13 2.8.1 BUSL-1.1 com.typesafe config 1.4.2 Apache-2.0 org.scala-lang.modules scala-java8-compat_2.13 1.0.0 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.slf4j slf4j-api 1.7.36 com.typesafe.akka akka-stream_2.13 2.8.1 BUSL-1.1 com.typesafe.akka akka-actor_2.13 2.8.1 BUSL-1.1 com.typesafe config 1.4.2 Apache-2.0 org.scala-lang.modules scala-java8-compat_2.13 1.0.0 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 com.typesafe.akka akka-protobuf-v3_2.13 2.8.1 BUSL-1.1 com.typesafe ssl-config-core_2.13 0.6.1 Apache-2.0 com.typesafe config 1.4.2 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.reactivestreams reactive-streams 1.0.4 MIT-0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.agrona agrona 1.17.1 The Apache License, Version 2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 com.typesafe.akka akka-stream-typed_2.13 2.8.1 BUSL-1.1 com.typesafe.akka akka-actor-typed_2.13 2.8.1 BUSL-1.1 com.typesafe.akka akka-actor_2.13 2.8.1 BUSL-1.1 com.typesafe config 1.4.2 Apache-2.0 org.scala-lang.modules scala-java8-compat_2.13 1.0.0 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 com.typesafe.akka akka-slf4j_2.13 2.8.1 BUSL-1.1 com.typesafe.akka akka-actor_2.13 2.8.1 BUSL-1.1 com.typesafe config 1.4.2 Apache-2.0 org.scala-lang.modules scala-java8-compat_2.13 1.0.0 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.slf4j slf4j-api 1.7.36 org.scala-lang scala-library 2.13.10 Apache-2.0 org.slf4j slf4j-api 1.7.36 com.typesafe.akka akka-stream_2.13 2.8.1 BUSL-1.1 com.typesafe.akka akka-actor_2.13 2.8.1 BUSL-1.1 com.typesafe config 1.4.2 Apache-2.0 org.scala-lang.modules scala-java8-compat_2.13 1.0.0 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 com.typesafe.akka akka-protobuf-v3_2.13 2.8.1 BUSL-1.1 com.typesafe ssl-config-core_2.13 0.6.1 Apache-2.0 com.typesafe config 1.4.2 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.reactivestreams reactive-streams 1.0.4 MIT-0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 org.scala-lang scala-library 2.13.10 Apache-2.0 io.r2dbc r2dbc-pool 1.0.0.RELEASE Apache License 2.0 io.projectreactor.addons reactor-pool 1.0.0 The Apache Software License, Version 2.0 io.projectreactor reactor-core 3.5.3 Apache License, Version 2.0 org.reactivestreams reactive-streams 1.0.4 MIT-0 io.projectreactor reactor-core 3.5.3 Apache License, Version 2.0 org.reactivestreams reactive-streams 1.0.4 MIT-0 io.r2dbc r2dbc-spi 1.0.0.RELEASE Apache License 2.0 org.reactivestreams reactive-streams 1.0.4 MIT-0 io.r2dbc r2dbc-spi 1.0.0.RELEASE Apache License 2.0 org.reactivestreams reactive-streams 1.0.4 MIT-0 org.postgresql r2dbc-postgresql 1.0.1.RELEASE Apache License 2.0 com.ongres.scram client 2.1 com.ongres.scram common 2.1 com.ongres.stringprep saslprep 1.1 com.ongres.stringprep stringprep 1.1 io.projectreactor.netty reactor-netty-core 1.1.3 The Apache Software License, Version 2.0 io.netty netty-handler-proxy 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-codec-http 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-codec 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-handler 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-codec 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport-native-unix-common 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-codec-socks 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-codec 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-codec 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-handler 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-codec 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport-native-unix-common 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver-dns-native-macos 4.1.89.Final io.netty netty-resolver-dns-classes-macos 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver-dns 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-codec-dns 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-codec 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-codec 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-handler 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-codec 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport-native-unix-common 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport-native-unix-common 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver-dns 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-codec-dns 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-codec 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-codec 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-handler 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-codec 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport-native-unix-common 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport-native-epoll 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport-classes-epoll 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport-native-unix-common 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport-native-unix-common 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-transport 4.1.89.Final io.netty netty-buffer 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-common 4.1.89.Final io.netty netty-resolver 4.1.89.Final io.netty netty-common 4.1.89.Final io.projectreactor reactor-core 3.5.3 Apache License, Version 2.0 org.reactivestreams reactive-streams 1.0.4 MIT-0 io.projectreactor reactor-core 3.5.3 Apache License, Version 2.0 org.reactivestreams reactive-streams 1.0.4 MIT-0 io.r2dbc r2dbc-spi 1.0.0.RELEASE Apache License 2.0 org.reactivestreams reactive-streams 1.0.4 MIT-0 org.scala-lang scala-library 2.13.10 Apache-2.0