Skip to content
This repository has been archived by the owner on Oct 5, 2021. It is now read-only.

Commit

Permalink
Merge pull request #240 from Shan1024/idea-2017-support
Browse files Browse the repository at this point in the history
Add plugin support to IDEA 2017
  • Loading branch information
sameerajayasoma authored Apr 18, 2017
2 parents 4961ffc + 48540ad commit ddccad9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ IntelliJ Platfom.
| Plugin Version | Platform Version |
| --- | --- |
| 0.8.x | IntelliJ IDEA 2016.3+ |
| 0.8.0 - 0.8.2 | IntelliJ IDEA 2016.3 - 2016.* |
| 0.8.3+ | IntelliJ IDEA 2016.3+ |
## Getting started
Expand Down
6 changes: 4 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ sourceSets {
}

intellij {
version 'IC-2016.3' //IntelliJ IDEA 2016.3 dependency; for a full list of IntelliJ IDEA releases please see https://www.jetbrains.com/intellij-repository/releases
plugins 'coverage' //Bundled plugin dependencies
//For a full list of IntelliJ IDEA releases, please see https://www.jetbrains.com/intellij-repository/releases.
version 'IC-2016.3'
pluginName 'Ballerina-IntelliJ-Plugin'
updateSinceUntilBuild false
plugins 'coverage' //Bundled plugin dependencies
}
16 changes: 6 additions & 10 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<idea-plugin version="2">
<idea-plugin>
<id>org.ballerinalang</id>
<name>Ballerina</name>
<version>0.8.2</version>
<category>Custom Languages</category>
<version>0.8.3</version>
<vendor email="ballerinalang@wso2.com" url="http://wso2.org">WSO2 Inc.</vendor>

<description><![CDATA[
Expand All @@ -12,18 +11,15 @@

<change-notes><![CDATA[
<ul>
<li>Support Ballerina v0.85 grammar.</li>
<li>Add Ballerina application run support.</li>
<li>Update Ballerina file run configuration.</li>
<li>Improve find usage support.</li>
<li>Improve parameter info support.</li>
<li>Add spellchecking support.</li>
<li>Add code folding support.</li>
</ul>
<a href="https://github.com/ballerinalang/plugin-intellij/milestone/3?closed=1">View all changes and bug fixes.</a>
<a href="https://github.com/ballerinalang/plugin-intellij/milestone/4?closed=1">View all changes and bug fixes.</a>
]]>
</change-notes>

<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
<idea-version since-build="141.0"/>
<idea-version since-build="163"/>

<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
on how to target different products -->
Expand Down

0 comments on commit ddccad9

Please sign in to comment.