refactor: standardize justfile task names and parameters across projects

This commit is contained in:
Matthew
2024-05-06 14:34:36 -05:00
parent b7fe91b003
commit 7d951578d0
5 changed files with 48 additions and 33 deletions

View File

@@ -1,17 +1,20 @@
test:
./gradlew connectedAndroidTest
onetest TEST:
./gradlew test --tests {{TEST}}
default:
just --list
build:
./gradlew buildAndroidLib
publishlocal:
./gradlew publishToMavenLocal -P localBuild
clean:
rm -rf ../bdk-ffi/target/
rm -rf ./build/
rm -rf ./lib/build/
rm -rf ./plugins/build/
rm -rf ./plugins/build/
publish-local:
./gradlew publishToMavenLocal -P localBuild
test:
./gradlew connectedAndroidTest
test-specific TEST:
./gradlew test --tests {{TEST}}