Bisq v1 gradle build plugins
Gradle plugin for copying a repo distribution's run script and lib dir to root project directory.
$ git submodule add https://github.com/bisq-network/bisq-gradle.git
If you need to use a non-main branch of this repo, use the -b branch-name option:
git submodule add -b add-post-build-plugin https://github.com/ghubstan/bisq-gradle.git
This will add 'bisq-gradle' to .gitmodules:
[submodule "bisq-gradle"]
path = bisq-gradle
url = https://github.com/bisq-network/bisq-gradle.git
$ git add bisq-gradle
$ git commit -m "Add submodule bisq-gradle" bisq-gradle .gitmodules
$ git push
$ git submodule init
$ git submodule update
$ git clone --recursive your-repo.git
plugins {
id 'application'
id 'bisq.post-build'
}
The bisq.post-build
plugin's postBuild
will execute at the end of your project's build task build
.