From 7adfd65cb2da61ebdf8fc51916a321f22f97b38f Mon Sep 17 00:00:00 2001 From: Laurent Bovet Date: Wed, 15 Feb 2023 17:37:22 +0100 Subject: [PATCH] Add bundle script --- bundle.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 bundle.sh diff --git a/bundle.sh b/bundle.sh new file mode 100755 index 0000000..5af77c9 --- /dev/null +++ b/bundle.sh @@ -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 *