-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
55 lines (49 loc) · 1.23 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
plugins {
id 'org.jetbrains.intellij' version '1.13.3'
id 'java'
}
group 'WJHarry'
version '1.0.0.5'
repositories {
mavenCentral()
}
dependencies {
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version = '232.8660.185'
}
patchPluginXml {
changeNotes = """
<p>1.0.0.5</p>
<ul>
<li>Update build version to fit version 232</li>
</ul>
<p>1.0.0.4</p>
<ul>
<li>Add some useful features: 1. Stash save and pop 2. Resolve conflicted files 3. Repair some bugs (NPE)</li>
</ul>
<p>1.0.0.3</p>
<ul>
<li>Update build version to fit version 231</li>
</ul>
<p>1.0.0.2</p>
<ul>
<li>Specify the correct since-build until-build</li>
</ul>
<p>1.0.0.1</p>
<ul>
<li>Added feature to open the project root directory in Explorer.</li>
<li>Improve some wording in the description.</li>
</ul>
<p>1.0.0.0</p>
<ul>
<li>Commit the first stable version 1.0.0.0</li>
</ul>
"""
sinceBuild = '201'
untilBuild = '232.*'
}
publishPlugin {
token = System.getenv("ORG_GRADLE_PROJECT_intellijPublishToken")
}