Skip to content

Commit

Permalink
Add bundle script
Browse files Browse the repository at this point in the history
  • Loading branch information
lbovet committed Feb 15, 2023
1 parent 6c1fa66 commit 7adfd65
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions bundle.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#/bin/sh
mvn clean install
mvn repository:bundle-create
cd target/
unzip -d bundle jminix-*-bundle.jar
rm jminix-*-bundle.jar
cd bundle
for i in *.jar; do gpg --detach-sig -a --sign $i; done
for i in *.xml; do gpg --detach-sig -a --sign $i; done
zip ../jminix-bundle.jar *

0 comments on commit 7adfd65

Please sign in to comment.