Classic Utilities
Dependency
To use Utilities, you must add the following dependency in your project:
- sbt
val PekkoVersion = "1.1.2+21-68d93f79-SNAPSHOT" libraryDependencies ++= Seq( "org.apache.pekko" %% "pekko-actor" % PekkoVersion, "org.apache.pekko" %% "pekko-testkit" % PekkoVersion % Test )
- Maven
<properties> <scala.binary.version>2.13</scala.binary.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.apache.pekko</groupId> <artifactId>pekko-bom_${scala.binary.version}</artifactId> <version>1.1.2+21-68d93f79-SNAPSHOT</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.apache.pekko</groupId> <artifactId>pekko-actor_${scala.binary.version}</artifactId> </dependency> <dependency> <groupId>org.apache.pekko</groupId> <artifactId>pekko-testkit_${scala.binary.version}</artifactId> <scope>test</scope> </dependency> </dependencies>
- Gradle
def versions = [ ScalaBinary: "2.13" ] dependencies { implementation platform("org.apache.pekko:pekko-bom_${versions.ScalaBinary}:1.1.2+21-68d93f79-SNAPSHOT") implementation "org.apache.pekko:pekko-actor_${versions.ScalaBinary}" testImplementation "org.apache.pekko:pekko-testkit_${versions.ScalaBinary}" }
1.1.2+21-68d93f79*