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