2020-06-05 09:01:18 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'org.jetbrains.intellij' version '0.4.21'
|
|
|
|
}
|
|
|
|
|
|
|
|
group 'io.zhile.research.intellij'
|
2020-06-09 04:05:04 +00:00
|
|
|
version '1.0.2'
|
2020-06-05 09:01:18 +00:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
|
|
}
|
|
|
|
|
|
|
|
// See https://github.com/JetBrains/gradle-intellij-plugin/
|
|
|
|
intellij {
|
|
|
|
// localPath "${System.properties['user.home']}/Applications/IntelliJ IDEA.app"
|
|
|
|
// alternativeIdePath localPath
|
|
|
|
|
|
|
|
version "2020.1.2"
|
|
|
|
type "IU"
|
|
|
|
}
|
|
|
|
|
|
|
|
patchPluginXml {
|
|
|
|
changeNotes """
|
2020-06-09 05:48:13 +00:00
|
|
|
release v1.0.2
|
|
|
|
1. compatibility fix"""
|
2020-06-05 10:14:27 +00:00
|
|
|
|
|
|
|
sinceBuild "162"
|
|
|
|
untilBuild null
|
2020-06-05 09:01:18 +00:00
|
|
|
}
|