Skip to content

Commit

Permalink
Add support for Idea 2020.2
Browse files Browse the repository at this point in the history
  • Loading branch information
AmailP committed Aug 14, 2020
1 parent fbd736f commit 4c38618
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jdk:

env:
- IDEA_VERSION=IC-192.5728.98
- IDEA_VERSION=IC-2020.1
- IDEA_VERSION=IC-2020.2

script:
- ./gradlew --console=plain check verifyPlugin
Expand Down
7 changes: 4 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,13 @@ repositories {

version = gitVersion()

def intellijVersion = System.getenv().getOrDefault("IDEA_VERSION", "IC-2020.1")
def intellijVersion = System.getenv().getOrDefault("IDEA_VERSION", "IC-2020.2")

def pythonPluginForVersion = [
"IC-192.5728.98": "PythonCore:2019.2.192.5728.98",
"IC-2020.1": "PythonCore:201.6668.9",
"IC-193.4778.7-EAP-SNAPSHOT": "PythonCore:193.4778.7",
"IC-2020.2": "PythonCore:202.6397.124",
// "IC-193.4778.7-EAP-SNAPSHOT": "PythonCore:193.4778.7",
]

intellij {
Expand All @@ -43,7 +44,7 @@ publishPlugin {

patchPluginXml {
sinceBuild "192"
untilBuild "201.*"
untilBuild "202.*"
}

apply plugin: 'scala'
Expand Down

0 comments on commit 4c38618

Please sign in to comment.