You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@orc.apache.org by do...@apache.org on 2021/08/13 16:44:30 UTC

[orc] branch branch-1.7 updated: ORC-943: Add Intellij conf to support JIRA/PR autolinks (#856)

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

dongjoon pushed a commit to branch branch-1.7
in repository https://gitbox.apache.org/repos/asf/orc.git


The following commit(s) were added to refs/heads/branch-1.7 by this push:
     new 6bd44b5  ORC-943: Add Intellij conf to support JIRA/PR autolinks (#856)
6bd44b5 is described below

commit 6bd44b5f26570e4db44e63d61294fafa8243d1e1
Author: William Hyun <wi...@apache.org>
AuthorDate: Fri Aug 13 09:43:10 2021 -0700

    ORC-943: Add Intellij conf to support JIRA/PR autolinks (#856)
    
    ### What changes were proposed in this pull request?
    This PR aims to add IntelliJ conf to support JIRA/PR autolinks.
    
    ### Why are the changes needed?
    This will help IntelliJ users a lot.
    
    ### How was this patch tested?
    N/A.
    
    (cherry picked from commit 289b844054c77d835d77297e9c6f4f47036b6d68)
    Signed-off-by: Dongjoon Hyun <do...@apache.org>
---
 java/.idea/vcs.xml | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/java/.idea/vcs.xml b/java/.idea/vcs.xml
new file mode 100644
index 0000000..8ac011a
--- /dev/null
+++ b/java/.idea/vcs.xml
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one or more
+  ~ contributor license agreements.  See the NOTICE file distributed with
+  ~ this work for additional information regarding copyright ownership.
+  ~ The ASF licenses this file to You under the Apache License, Version 2.0
+  ~ (the "License"); you may not use this file except in compliance with
+  ~ the License.  You may obtain a copy of the License at
+  ~
+  ~    http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+-->
+<project version="4">
+  <component name="IssueNavigationConfiguration">
+    <option name="links">
+      <list>
+        <IssueNavigationLink>
+          <option name="issueRegexp" value="[A-Z]+\-\d+" />
+          <option name="linkRegexp" value="https://issues.apache.org/jira/browse/$0" />
+        </IssueNavigationLink>
+        <IssueNavigationLink>
+          <option name="issueRegexp" value="#(\d+)" />
+          <option name="linkRegexp" value="https://github.com/apache/orc/pull/$1" />
+        </IssueNavigationLink>
+      </list>
+    </option>
+  </component>
+  <component name="VcsDirectoryMappings">
+    <mapping directory="$PROJECT_DIR$/.." vcs="Git" />
+  </component>
+</project>