Step 1. Add the JitPack repository to your build file
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Step 2. Add the dependency
dependencies {
implementation 'com.github.darktheft:debug_darktheft:v1.0.1'
}
Step 1. Add the JitPack repository to your build file
jitpack.io https://jitpack.ioStep 2. Add the dependency
com.github.darktheft debug_darktheft v1.0.1Step 1. Add the JitPack repository to your build file
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Step 2. Add the dependency
libraryDependencies += "com.github.darktheft" % "debug_darktheft" % "v1.0.1"
Step 1. Add the JitPack repository to your build file
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
:dependencies [[com.github.darktheft/debug_darktheft "v1.0.1"]]