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