From: Roland Haeder Date: Thu, 8 Oct 2015 15:56:50 +0000 (+0200) Subject: dist.sh is now generic and can be easily distributed. You should now use it for X-Git-Url: https://git.mxchange.org/?p=jshop-lib.git;a=commitdiff_plain;h=bfd34384696d021a58ce3697bb00e1a5eadeed95 dist.sh is now generic and can be easily distributed. You should now use it for EJB projects as the EJB jar will be copied to (my system specs, will be improved later on) a Glassfish domain's "lib" directory. I do this here for easy local deployment (not in-place). updated jar(s) Signed-off-by: Roland Häder --- diff --git a/dist.sh b/dist.sh index f58ac6e..f48251e 100755 --- a/dist.sh +++ b/dist.sh @@ -1,10 +1,23 @@ #!/bin/sh -NAME="jshop-ee-lib" +NAME="${PWD##*/}" +DIST="dist/${NAME}.jar" LIST=`find ../*/lib/${NAME}.jar` LIST="${LIST} `find ../*/*-ejb/lib/${NAME}.jar`" +LIST="${LIST} ${HOME}/gf_domains/domain1/lib/" -for entry in ${LIST}; +for target in ${LIST}; do - cp -v dist/${NAME}.jar ${entry} + if [ ! -f "${DIST}" ] + then + echo "$0: '${DIST}' not found." + elif [ -d "${target}" ] + then + cp -v "${DIST}" "${target}" + elif [ -f "${target}" ] + then + cp -v "${DIST}" "${target}" + else + echo "$0: Target '${target}' not found." + fi done diff --git a/lib/jcore.jar b/lib/jcore.jar index d22a62f..b3bed2d 100644 Binary files a/lib/jcore.jar and b/lib/jcore.jar differ diff --git a/lib/jcoreee.jar b/lib/jcoreee.jar index 695f726..b39cb8c 100644 Binary files a/lib/jcoreee.jar and b/lib/jcoreee.jar differ diff --git a/lib/jshop-core.jar b/lib/jshop-core.jar index 562865a..e1ef692 100644 Binary files a/lib/jshop-core.jar and b/lib/jshop-core.jar differ