This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new a9838875c57c chore: add IntelliJ issue navigation for CAMEL tickets 
and fix .gitignore (#24061)
a9838875c57c is described below

commit a9838875c57c4a87818afcf6c6a2760c398cdbfe
Author: Adriano Machado <[email protected]>
AuthorDate: Wed Jun 17 05:49:11 2026 -0400

    chore: add IntelliJ issue navigation for CAMEL tickets and fix .gitignore 
(#24061)
    
    Add .idea/vcs.xml to configure IntelliJ IDEA issue navigation, linking
    CAMEL-\d+ patterns to the ASF JIRA project. Update .gitignore with a
    negation rule to unblock the file and fix the .settings entry to use a
    trailing slash so only the directory is excluded.
    
    Co-authored-by: Claude Sonnet 4.6 <[email protected]>
---
 .gitignore    |  3 ++-
 .idea/vcs.xml | 16 ++++++++++++++++
 2 files changed, 18 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index e871c05ad747..c00c857ddc1c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,11 +3,12 @@ target
 *.ipr
 *.iws
 .idea
+!.idea/vcs.xml
 .DS_Store
 .classpath
 .ekstazi
 .project
-.settings
+.settings/
 .checkstyle
 *.log
 test-salesforce-login.properties
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 000000000000..5d313baa2a2f
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<project version="4">
+  <component name="IssueNavigationConfiguration">
+    <option name="links">
+      <list>
+        <IssueNavigationLink>
+          <option name="issueRegexp" value="CAMEL-(\d+)" />
+          <option name="linkRegexp" 
value="https://issues.apache.org/jira/projects/CAMEL/issues/CAMEL-$1"; />
+        </IssueNavigationLink>
+      </list>
+    </option>
+  </component>
+  <component name="VcsDirectoryMappings">
+    <mapping directory="" vcs="Git" />
+  </component>
+</project>

Reply via email to