Skip to content

Commit

Permalink
Merge pull request #400 from carymrobbins/396-idea-2019.2
Browse files Browse the repository at this point in the history
Support IntelliJ 2019.2
  • Loading branch information
carymrobbins authored Sep 27, 2019
2 parents dad284c + 52004a7 commit f052f20
Show file tree
Hide file tree
Showing 83 changed files with 2,219 additions and 1,520 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ sudo: false
jdk:
- oraclejdk8

# For oraclejdk8 support: https://travis-ci.community/t/error-installing-oraclejdk8-expected-feature-release-number-in-range-of-9-to-14-but-got-8/3766/10
dist: trusty

branches:
only:
- master
Expand Down
16 changes: 13 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "org.jetbrains.intellij" version "0.2.16"
id "org.jetbrains.intellij" version "0.4.10"
}

version = file('version.txt').text.trim()
Expand Down Expand Up @@ -29,9 +29,10 @@ allprojects {
apply plugin: 'org.jetbrains.intellij'

intellij {
version = '2017.3'
version = '2019.2.1'
pluginName = 'HaskForce'
updateSinceUntilBuild = false
updateSinceUntilBuild = true
plugins = ['java', 'yaml']
}

repositories {
Expand Down Expand Up @@ -119,6 +120,15 @@ patchPluginXml {
sinceBuild = '173'
}

// Allow re-running tests without forcing a recompile.
test.outputs.upToDateWhen { false }

buildPlugin {
archiveName = "haskforce-${patchPluginXml.version}.zip"
}

test {
if ("1" == System.getenv("OVERWRITE_FIXTURES")) {
systemProperties.put("idea.tests.overwrite.data", "true")
}
}
Loading

0 comments on commit f052f20

Please sign in to comment.