From bcb38971d855e610e96bbef921837d4f1438c26f Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Mon, 5 Oct 2015 15:06:41 +0200 Subject: [PATCH] =?utf8?q?added=20dist.sh=20+=20.gitignore=20Signed-off-by?= =?utf8?q?:Roland=20H=C3=A4der=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .gitignore | 5 +++++ dist.sh | 10 ++++++++++ 2 files changed, 15 insertions(+) create mode 100644 .gitignore create mode 100644 dist.sh diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1cd7a86 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +/nbproject/private/ +/manifest.mf +/build/ +/dist/ +/*.properties diff --git a/dist.sh b/dist.sh new file mode 100644 index 0000000..7316984 --- /dev/null +++ b/dist.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +NAME="juser-core" +LIST=`find ../*/lib/${NAME}.jar` +LIST="${LIST} `find ../*/*-ejb/lib/${NAME}.jar`" + +for entry in ${LIST}; +do + cp -v dist/${NAME}.jar ${entry} +done -- 2.39.5