-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
45 lines (39 loc) · 1.05 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
plugins {
id 'java'
id 'org.jetbrains.intellij' version '1.13.3'
}
group 'de.dmoebius.intellij'
version '1.0.7'
sourceCompatibility = 17
repositories {
mavenCentral()
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version.set('2022.3')
}
patchPluginXml {
untilBuild.set("")
changeNotes.set("""
<dl>
<dt>Version 1.0.7</dt>
<dd>replace deprecated api</dd>
<dt>Version 1.0.6</dt>
<dd>fixed minor plugin configuration error</dd>
<dt>Version 1.0.5</dt>
<dd>compatibility with 2022.3, 2023.1 (and higher)</dd>
<dt>Version 1.0.4</dt>
<dd>compatibility with 2022.3</dd>
<dt>Version 1.0.3</dt>
<dd>compatibility with 2022.2 (and higher)</dd>
<dt>Version 1.0.2</dt>
<dd>compatibility with 2019.1-3 (and higher)</dd>
<dt>Version 1.0.1</dt>
<dd>added link to github page</dd>
<dt>Version 1.0</dt>
<dd>initial release</dd>
</dl>""")
}
publishPlugin {
token.set(intellijPublishToken)
}