How to add a dependency to Maven
Add the following net.dubboclub : akka-protocol maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>net.dubboclub</groupId>
<artifactId>akka-protocol</artifactId>
<version>0.0.4</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following net.dubboclub : akka-protocol gradle dependency to your build.gradle
file:
implementation 'net.dubboclub:akka-protocol:0.0.4'
Gradle Kotlin DSL: Add the following net.dubboclub : akka-protocol gradle kotlin dependency to your build.gradle.kts
file:
implementation("net.dubboclub:akka-protocol:0.0.4")
How to add a dependency to SBT Scala
SBT Scala: Add the following net.dubboclub : akka-protocol sbt scala dependency to your build.sbt
file:
libraryDependencies += "net.dubboclub" % "akka-protocol" % "0.0.4"