| <!-- |
| 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. |
| --> |
| |
| <!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html --> |
| <idea-plugin> |
| <!-- Unique identifier of the plugin. It should be FQN. It cannot be changed between the plugin versions. --> |
| <id>beam-code-completion-plugin</id> |
| |
| <!-- Public plugin name should be written in Title Case. |
| Guidelines: https://plugins.jetbrains.com/docs/marketplace/plugin-overview-page.html#plugin-name --> |
| <name>Apache Beam Completion</name> |
| |
| <!-- A displayed Vendor name or Organization ID displayed on the Plugins Page. --> |
| <vendor email="test@gmail.com" url="https://beam.apache.org">Apache Beam</vendor> |
| |
| <!-- Description of the plugin displayed on the Plugin Page and IDE Plugin Manager. |
| Simple HTML elements (text formatting, paragraphs, and lists) can be added inside of <![CDATA[ ]]> tag. |
| Guidelines: https://plugins.jetbrains.com/docs/marketplace/plugin-overview-page.html#plugin-description --> |
| <description>A plugin that provides Apache Beam completions.</description> |
| |
| <!-- Product and plugin compatibility requirements. |
| Read more: https://plugins.jetbrains.com/docs/intellij/plugin-compatibility.html --> |
| <depends>com.intellij.modules.platform</depends> |
| <depends>com.intellij.modules.lang</depends> |
| <depends>com.intellij.modules.java</depends> |
| |
| <!-- Extension points defined by the plugin. |
| Read more: https://plugins.jetbrains.com/docs/intellij/plugin-extension-points.html --> |
| <extensions defaultExtensionNs="com.intellij"> |
| <completion.contributor language="JAVA" order="first" |
| implementationClass="BeamCompletionContributor"></completion.contributor> |
| |
| <completion.confidence language="JAVA" order="first" implementationClass="BeamCompletionConfidence"></completion.confidence> |
| </extensions> |
| </idea-plugin> |