mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-23 15:00:30 +01:00
Merge pull request #3757 from wiz/add-seednode-jaronly-archive-script
Add script to create seednode jar archive without jar deps
This commit is contained in:
commit
14bec2ff4b
1 changed files with 15 additions and 0 deletions
15
seednode/create_jaronly_archive.sh
Executable file
15
seednode/create_jaronly_archive.sh
Executable file
|
@ -0,0 +1,15 @@
|
|||
#!/bin/sh
|
||||
set -x
|
||||
|
||||
./gradlew build -x test
|
||||
|
||||
tar zvcf bisq-seednode-jaronly.tgz \
|
||||
seednode/build/app/lib/assets.jar \
|
||||
seednode/build/app/lib/common.jar \
|
||||
seednode/build/app/lib/core.jar \
|
||||
seednode/build/app/lib/p2p.jar \
|
||||
seednode/build/app/lib/seednode.jar
|
||||
|
||||
ls -la bisq-seednode-jaronly.tgz
|
||||
|
||||
exit 0
|
Loading…
Add table
Reference in a new issue