This is an automated email from the ASF dual-hosted git repository.
sergehuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/unomi.git
The following commit(s) were added to refs/heads/master by this push:
new d96f90763 Exclude .local-notes from git and RAT (#761)
d96f90763 is described below
commit d96f90763e7d1a397fff942268c57f7dbdce7903
Author: Serge Huber <[email protected]>
AuthorDate: Tue May 19 08:44:16 2026 +0200
Exclude .local-notes from git and RAT (#761)
---
.gitignore | 1 +
pom.xml | 2 ++
2 files changed, 3 insertions(+)
diff --git a/.gitignore b/.gitignore
index 88b5fda8e..789812914 100644
--- a/.gitignore
+++ b/.gitignore
@@ -20,3 +20,4 @@ rest/.miredot-offline.json
itests/src/main
dependency_tree.txt
.mvn/.develocity/develocity-workspace-id
+/.local-notes/
diff --git a/pom.xml b/pom.xml
index 25360797d..174e68308 100644
--- a/pom.xml
+++ b/pom.xml
@@ -641,6 +641,8 @@
<exclude>**/*.js.map</exclude>
<!-- Exclude dependency tree generated files
-->
<exclude>**/dependency_tree.txt</exclude>
+ <!-- local developer notes (not part of the
release) -->
+ <exclude>**/.local-notes/**</exclude>
</excludes>
</configuration>
</plugin>