kable
kable copied to clipboard
Add implicit bonding support
[!CAUTION] This is a work-in-progress and is not yet tested.
Closes #111
@twyatt how can I test this in my project? I cannot get jitpack to work with this multiplatform branch.
how can I test this in my project? I cannot get jitpack to work with this multiplatform branch.
@Frank1234 You could use a local Maven install for testing:
Replace $version with an arbitrary version name, e.g.: 999.0.0.
$ ./gradlew -PRELEASE_SIGNING_ENABLED=false -PVERSION_NAME=$version publishToMavenLocal
repositories {
mavenLocal()
// ..
}
dependencies {
implementation("com.juul.kable:core:$version")
}