Skip to content

Commit

Permalink
Add script to create seednode jar archive without jar deps
Browse files Browse the repository at this point in the history
  • Loading branch information
wiz committed Dec 6, 2019
1 parent acd4350 commit c1a9086
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions seednode/create_jaronly_archive.sh
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit c1a9086

Please sign in to comment.