This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/orc.git
The following commit(s) were added to refs/heads/main by this push:
new ec6a47a41 ORC-1594: Add IntelliJ conf in the project root directory to
support JIRA/PR autolinks
ec6a47a41 is described below
commit ec6a47a4192073aad913b65e0fd110b76e762a60
Author: sychen <[email protected]>
AuthorDate: Thu Jan 18 08:47:49 2024 -0800
ORC-1594: Add IntelliJ conf in the project root directory to support
JIRA/PR autolinks
### What changes were proposed in this pull request?
Add `.idea/vcs.xml` to ORC project.
### Why are the changes needed?
https://github.com/apache/orc/pull/856 Only add `.idea/vcs.xml` to the Java
project. If the developer imports the ORC project, this may not take effect.
### How was this patch tested?
local test
### Was this patch authored or co-authored using generative AI tooling?
No
Closes #1759 from cxzl25/ORC-943-FOLLOWUP.
Authored-by: sychen <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
.idea/vcs.xml | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 000000000..a20efe891
--- /dev/null
+++ b/.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>