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