From 5de9d86fab2b8bec58bd09e95640da468d4e1f61 Mon Sep 17 00:00:00 2001 From: Manjunath Ranganathaiah Date: Tue, 10 Apr 2018 13:22:00 -0700 Subject: Add maven build structure Restructure the directories and files to accommodate maven build. This will build, test and generate jar file for clients to use. Adds a target in the top level makefile. Issue-ID: AAF-183 Change-Id: I8c27396248d83070befe51f2c6e01aed7dea9202 Signed-off-by: Manjunath Ranganathaiah --- sms-service/src/Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'sms-service') diff --git a/sms-service/src/Makefile b/sms-service/src/Makefile index 6569ec1..f085059 100644 --- a/sms-service/src/Makefile +++ b/sms-service/src/Makefile @@ -1,7 +1,11 @@ -build: +buildclient: + cd ../../sms-client && echo "Building JAVA client package" && \ + mvn package + +build: buildclient $(MAKE) -C sms build $(MAKE) -C quorumclient build deploy: $(MAKE) -C sms deploy - $(MAKE) -C quorumclient deploy \ No newline at end of file + $(MAKE) -C quorumclient deploy -- cgit 1.2.3-korg