[java-idp-example-jetty-base] 03/03: Exclude top level directory from assembled artifacts.
Tom Zeller
tzeller at dragonacea.biz
Wed May 25 16:43:01 EDT 2016
This is an automated email from the git hooks/post-receive script.
tzeller pushed a commit to branch 9.2
in repository java-idp-example-jetty-base.
commit 0f358b9fe8fb917d6b4a73d9f730bc25e8425bde
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Wed May 25 13:23:44 2016 -0500
Exclude top level directory from assembled artifacts.
Without this change, the .zip and .tar.gz assembled artifacts would
unpack to :
idp-example-jetty-base-<version>/jetty-base
while we want just :
jetty-base
---
src/main/assembly/tgz.xml | 1 +
src/main/assembly/zip.xml | 1 +
2 files changed, 2 insertions(+)
diff --git a/src/main/assembly/tgz.xml b/src/main/assembly/tgz.xml
index 72dcc14..e48d2b9 100644
--- a/src/main/assembly/tgz.xml
+++ b/src/main/assembly/tgz.xml
@@ -11,4 +11,5 @@
<outputDirectory></outputDirectory>
</fileSet>
</fileSets>
+ <includeBaseDirectory>false</includeBaseDirectory>
</assembly>
diff --git a/src/main/assembly/zip.xml b/src/main/assembly/zip.xml
index 7fcec56..7c57005 100644
--- a/src/main/assembly/zip.xml
+++ b/src/main/assembly/zip.xml
@@ -34,4 +34,5 @@
<lineEnding>windows</lineEnding>
</fileSet>
</fileSets>
+ <includeBaseDirectory>false</includeBaseDirectory>
</assembly>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list