]> git.mxchange.org Git - juser-activity-core.git/commitdiff
added dist.sh + .gitignore
authorRoland Haeder <roland@mxchange.org>
Mon, 5 Oct 2015 13:06:41 +0000 (15:06 +0200)
committerRoland Haeder <roland@mxchange.org>
Mon, 5 Oct 2015 13:06:41 +0000 (15:06 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

.gitignore [new file with mode: 0644]
dist.sh [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..1cd7a86
--- /dev/null
@@ -0,0 +1,5 @@
+/nbproject/private/
+/manifest.mf
+/build/
+/dist/
+/*.properties
diff --git a/dist.sh b/dist.sh
new file mode 100644 (file)
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