From af828efa93c455cc6442122d09994f29029fcf07 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Wed, 23 Jun 2021 14:20:04 -0700 Subject: [PATCH] Update build.sh to publish to local maven repo --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 7503b6d..bbcc9bf 100755 --- a/build.sh +++ b/build.sh @@ -13,7 +13,7 @@ cc cc/bdk_ffi_test.c -o cc/bdk_ffi_test -L target/debug -l bdk_ffi -l pthread -l mkdir -p bdk-kotlin/jvm/src/main/resources/linux-x86-64 cp target/debug/libbdk_ffi.so bdk-kotlin/jvm/src/main/resources/linux-x86-64 -(cd bdk-kotlin && gradle :jvm:build) +(cd bdk-kotlin && gradle :jvm:build && gradle :jvm:publishToMavenLocal) # rust android @@ -49,4 +49,4 @@ if echo $BUILD_TARGETS | grep "i686"; then fi # bdk-kotlin aar -(cd bdk-kotlin && gradle :android:build) +(cd bdk-kotlin && gradle :android:build && gradle :android:publishToMavenLocal)