[java-metadata-aggregator] 01/03: MDA-297 - enable development in doc tree
Ian Young
ian at iay.org.uk
Fri Oct 20 15:57:28 UTC 2023
This is an automated email from the git hooks/post-receive script.
iay pushed a commit to branch main
in repository java-metadata-aggregator.
View the commit online:
http://git.shibboleth.net/view/?p=java-metadata-aggregator.git;a=commit;h=d711bff2879fdba9d4f0db31c87c6d90597e1f4c
commit d711bff2879fdba9d4f0db31c87c6d90597e1f4c
Author: Ian Young <ian at iay.org.uk>
AuthorDate: Fri Oct 20 15:08:21 2023 +0100
MDA-297 - enable development in doc tree
https://shibboleth.atlassian.net/browse/MDA-297
---
doc/wiki/.gitignore | 1 +
mda-distribution/src/main/assembly/assembly-tgz.xml | 7 +++++++
mda-distribution/src/main/assembly/assembly-zip.xml | 7 +++++++
3 files changed, 15 insertions(+)
diff --git a/doc/wiki/.gitignore b/doc/wiki/.gitignore
new file mode 100644
index 0000000..c40b483
--- /dev/null
+++ b/doc/wiki/.gitignore
@@ -0,0 +1 @@
+.bash_history
diff --git a/mda-distribution/src/main/assembly/assembly-tgz.xml b/mda-distribution/src/main/assembly/assembly-tgz.xml
index 5015326..cf1dffd 100644
--- a/mda-distribution/src/main/assembly/assembly-tgz.xml
+++ b/mda-distribution/src/main/assembly/assembly-tgz.xml
@@ -46,6 +46,13 @@
<directory>${project.basedir}/../doc/</directory>
<outputDirectory>doc</outputDirectory>
<lineEnding>unix</lineEnding>
+ <excludes>
+ <!-- Allow development within the documentation tree. -->
+ <exclude>**/.gitignore</exclude>
+ <exclude>**/.bash_history</exclude>
+ <!-- Do not ship example OUTPUT files. -->
+ <exclude>wiki/path/to/discofeed.json</exclude>
+ </excludes>
</fileSet>
</fileSets>
</assembly>
diff --git a/mda-distribution/src/main/assembly/assembly-zip.xml b/mda-distribution/src/main/assembly/assembly-zip.xml
index 97e0d61..acf5c6e 100644
--- a/mda-distribution/src/main/assembly/assembly-zip.xml
+++ b/mda-distribution/src/main/assembly/assembly-zip.xml
@@ -46,6 +46,13 @@
<directory>${project.basedir}/../doc/</directory>
<outputDirectory>doc</outputDirectory>
<lineEnding>windows</lineEnding>
+ <excludes>
+ <!-- Allow development within the documentation tree. -->
+ <exclude>**/.gitignore</exclude>
+ <exclude>**/.bash_history</exclude>
+ <!-- Do not ship example OUTPUT files. -->
+ <exclude>wiki/path/to/discofeed.json</exclude>
+ </excludes>
</fileSet>
</fileSets>
</assembly>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list