From: Roland Haeder Date: Fri, 19 Feb 2016 13:27:58 +0000 (+0100) Subject: WildFly branch created with initial scripts, but it doesn't load my libs. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7e2c9c99d935c0c3177fe66009508aaacb9293b0;p=jcore-swing.git WildFly branch created with initial scripts, but it doesn't load my libs. Signed-off-by: Roland Häder --- diff --git a/dist.sh b/dist.sh index f48251e..0e09779 100755 --- a/dist.sh +++ b/dist.sh @@ -1,17 +1,24 @@ -#!/bin/sh +#!/bin/bash +# Name of this project, detected by it's base path NAME="${PWD##*/}" + +# Generated JAR file DIST="dist/${NAME}.jar" + +# Generate list LIST=`find ../*/lib/${NAME}.jar` LIST="${LIST} `find ../*/*-ejb/lib/${NAME}.jar`" -LIST="${LIST} ${HOME}/gf_domains/domain1/lib/" + +if [ ! -f "${DIST}" ] +then + echo "$0: '${DIST}' not found." + exit 1 +fi for target in ${LIST}; do - if [ ! -f "${DIST}" ] - then - echo "$0: '${DIST}' not found." - elif [ -d "${target}" ] + if [ -d "${target}" ] then cp -v "${DIST}" "${target}" elif [ -f "${target}" ] @@ -21,3 +28,6 @@ do echo "$0: Target '${target}' not found." fi done + +echo "$0: All done." +exit 0 diff --git a/lib/jcontacts-core.jar b/lib/jcontacts-core.jar index b6a86f1..8e6303e 100644 Binary files a/lib/jcontacts-core.jar and b/lib/jcontacts-core.jar differ diff --git a/lib/jcore.jar b/lib/jcore.jar index 658854d..5cf35ac 100644 Binary files a/lib/jcore.jar and b/lib/jcore.jar differ