Skip to content

Commit

Permalink
Prepare for EAP
Browse files Browse the repository at this point in the history
  • Loading branch information
xdrop committed Feb 1, 2019
1 parent 1bd813b commit 8efc8cd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
buildscript {
ext.kotlin_version = '1.2.61'
ext.kotlin_version = '1.3.20'
}
plugins {
id 'org.jetbrains.intellij' version '0.3.4'
id 'org.jetbrains.kotlin.jvm' version '1.2.61'
id 'org.jetbrains.kotlin.jvm' version '1.3.20'
}

dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
}

group 'me.xdrop'
version '1.3.6'
version '1.3.7'

def isDevMode = System.getProperty("dev")?.toBoolean() ?: false

Expand All @@ -37,19 +37,19 @@ compileKotlin {
def pluginsIncluded = ['JavaScriptLanguage', "org.jetbrains.kotlin:$kotlin_version-release-IJ$ideaVersion-1"]
intellij {
pluginName 'nightowl-theme'
version "IU-2018.3"
version "IU-191.4738.6"
updateSinceUntilBuild true
if (isDevMode) {
pluginsIncluded.addAll(['izhangzhihao.rainbow.brackets:5.10',
'com.chrisrm.idea.MaterialThemeUI:2.10.5.2'])
'com.chrisrm.idea.MaterialThemeUI:3.5.0.1'])
}
plugins = pluginsIncluded
}

patchPluginXml {
changeNotes file("$projectDir/docs/CHANGELOG.html").text
sinceBuild '183.2940.0'
untilBuild '183.*'
untilBuild '191.*'
}

task colorsJar(type: Zip) {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ideaVersion=2018.2
ideaVersion=2018.3

0 comments on commit 8efc8cd

Please sign in to comment.