diff --git a/bdk-android/README.md b/bdk-android/README.md index c6e816f..cb86f6d 100644 --- a/bdk-android/README.md +++ b/bdk-android/README.md @@ -95,7 +95,7 @@ export ANDROID_NDK_ROOT=$ANDROID_SDK_ROOT/ndk/25.2.9519653 ## How to publish to your local Maven repo ```shell cd bdk-android -./gradlew publishToMavenLocal --exclude-task signMavenPublication +./gradlew publishToMavenLocal -P localBuild ``` Note that the commands assume you don't need the local libraries to be signed. If you do wish to sign them, simply set your `~/.gradle/gradle.properties` signing key values like so: @@ -104,7 +104,7 @@ signing.gnupg.keyName= signing.gnupg.passphrase= ``` -and use the `publishToMavenLocal` task without excluding the signing task: +and use the `publishToMavenLocal` task without the `localBuild` flag: ```shell ./gradlew publishToMavenLocal ``` diff --git a/bdk-jvm/README.md b/bdk-jvm/README.md index a7386a6..92d3130 100644 --- a/bdk-jvm/README.md +++ b/bdk-jvm/README.md @@ -84,7 +84,7 @@ rustup target add x86_64-apple-darwin aarch64-apple-darwin ## How to publish to your local Maven repo ```shell cd bdk-jvm -./gradlew publishToMavenLocal --exclude-task signMavenPublication +./gradlew publishToMavenLocal -P localBuild ``` Note that the commands assume you don't need the local libraries to be signed. If you do wish to sign them, simply set your `~/.gradle/gradle.properties` signing key values like so: @@ -93,7 +93,7 @@ signing.gnupg.keyName= signing.gnupg.passphrase= ``` -and use the `publishToMavenLocal` task without excluding the signing task: +and use the `publishToMavenLocal` task without the `localBuild` flag: ```shell ./gradlew publishToMavenLocal ```