Install
The library is currently deployed to Maven Central's snapshot repository under the group ID org.kotlinbitcointools
and the artifact ID bip21
. You can import it in your project as you would any other Maven dependency provided you have the snapshot Maven repository configured as a dependency source:
dependencyResolutionManagement {
repositories {
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
// mavenCentral()
}
}
Build and deploy locally
To build the library locally and deploy to your local Maven repository, run the following command:
The library will be available in your local Maven repository (typically at ~/.m2/repository/
for macOS and Linux systems) under the group ID org.kotlinbitcointools
and the artifact ID bip21
. You can import it in your project as you would any other Maven dependency provided you have your local Maven repository (mavenLocal()
) configured as a dependency source: