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