How to add a dependency to Maven
Add the following co.actioniq.thirdparty.ohnosequences : ivy-s3-resolver maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>co.actioniq.thirdparty.ohnosequences</groupId>
<artifactId>ivy-s3-resolver</artifactId>
<version>0.9.0-eda0180244bd58feff8214e7deb930ee928218b9</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following co.actioniq.thirdparty.ohnosequences : ivy-s3-resolver gradle dependency to your build.gradle
file:
implementation 'co.actioniq.thirdparty.ohnosequences:ivy-s3-resolver:0.9.0-eda0180244bd58feff8214e7deb930ee928218b9'
Gradle Kotlin DSL: Add the following co.actioniq.thirdparty.ohnosequences : ivy-s3-resolver gradle kotlin dependency to your build.gradle.kts
file:
implementation("co.actioniq.thirdparty.ohnosequences:ivy-s3-resolver:0.9.0-eda0180244bd58feff8214e7deb930ee928218b9")
How to add a dependency to SBT Scala
SBT Scala: Add the following co.actioniq.thirdparty.ohnosequences : ivy-s3-resolver sbt scala dependency to your build.sbt
file:
libraryDependencies += "co.actioniq.thirdparty.ohnosequences" % "ivy-s3-resolver" % "0.9.0-eda0180244bd58feff8214e7deb930ee928218b9"