From 97079c321495026f42112fdb88f5fe25dfb746cb Mon Sep 17 00:00:00 2001 From: matsjj Date: Wed, 27 Apr 2016 17:24:53 +0100 Subject: [PATCH] Added build script --- build.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 build.sh diff --git a/build.sh b/build.sh new file mode 100755 index 00000000..d1cd4195 --- /dev/null +++ b/build.sh @@ -0,0 +1,14 @@ +#!/bin/sh + +mvn clean install + +cd thunder-core +mvn clean compile assembly:single +cd .. +cd thunder-clientgui +mvn clean compile package +cd .. + +cp thunder-clientgui/target/thunder-clientgui-0.1.jar thunder-wallet.jar + +cp thunder-core/target/thunder-core-0.1-jar-with-dependencies.jar thunder-node.jar