2020-06-05 09:01:18 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2020-11-02 11:19:05 +00:00
|
|
|
id 'org.jetbrains.intellij' version '0.5.0'
|
2020-06-05 09:01:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
group 'io.zhile.research.intellij'
|
2020-11-03 10:39:03 +00:00
|
|
|
version '2.0.2'
|
2020-11-02 11:19:05 +00:00
|
|
|
|
|
|
|
sourceCompatibility = 1.7
|
|
|
|
targetCompatibility = 1.7
|
2020-06-05 09:01:18 +00:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
|
|
}
|
|
|
|
|
2020-11-02 11:19:05 +00:00
|
|
|
buildPlugin {
|
|
|
|
buildSearchableOptions.enabled = false
|
|
|
|
}
|
|
|
|
|
2020-06-05 09:01:18 +00:00
|
|
|
// See https://github.com/JetBrains/gradle-intellij-plugin/
|
|
|
|
intellij {
|
2020-10-13 09:15:29 +00:00
|
|
|
version "2020.2.3"
|
2020-06-05 09:01:18 +00:00
|
|
|
type "IU"
|
|
|
|
}
|
|
|
|
|
|
|
|
patchPluginXml {
|
2020-11-03 08:45:43 +00:00
|
|
|
changeNotes """<pre>
|
2020-11-03 10:39:03 +00:00
|
|
|
Release v2.0.2
|
|
|
|
1. sync prefs manually
|
2020-11-03 08:45:43 +00:00
|
|
|
Release v2.0.1
|
|
|
|
1. add option: Reset Automatically
|
|
|
|
Release v2.0.0
|
|
|
|
1. add ui
|
|
|
|
2. more stable and accurate
|
|
|
|
Release v1.0.5
|
|
|
|
1. update for 2020.2.x
|
|
|
|
Release v1.0.4
|
|
|
|
1. reset completely
|
|
|
|
Release v1.0.3
|
|
|
|
1. bug fix
|
|
|
|
Release v1.0.2
|
|
|
|
1. compatibility fix
|
|
|
|
</pre>"""
|
2020-06-05 10:14:27 +00:00
|
|
|
|
2020-11-02 11:19:05 +00:00
|
|
|
sinceBuild "145.258"
|
2020-06-05 10:14:27 +00:00
|
|
|
untilBuild null
|
2020-06-05 09:01:18 +00:00
|
|
|
}
|