]> git.mxchange.org Git - jcore-swing.git/commitdiff
WildFly branch created with initial scripts, but it doesn't load my libs.
authorRoland Haeder <roland@mxchange.org>
Fri, 19 Feb 2016 13:27:58 +0000 (14:27 +0100)
committerRoland Haeder <roland@mxchange.org>
Fri, 19 Feb 2016 13:27:58 +0000 (14:27 +0100)
Signed-off-by: Roland Häder <roland@mxchange.org>
dist.sh
lib/jcontacts-core.jar
lib/jcore.jar

diff --git a/dist.sh b/dist.sh
index f48251e36059fd6bf0a0acb8832e9459060caac3..0e0977980b65c02c0fc5b8cb8e04d25aa04a85d0 100755 (executable)
--- 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
index b6a86f10c9a1cbd067c7d31d56e7d9485b2ab9bb..8e6303e2ddb755381cb91cba61dbf34ade154fad 100644 (file)
Binary files a/lib/jcontacts-core.jar and b/lib/jcontacts-core.jar differ
index 658854d4dcbdceca018177f9d92eeb1ef2778f37..5cf35acca06422127444d7992ffc541383d7aa1c 100644 (file)
Binary files a/lib/jcore.jar and b/lib/jcore.jar differ