-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
51 lines (44 loc) · 1003 Bytes
/
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
plugins {
id 'java'
id 'org.jetbrains.intellij' version '1.16.0'
}
sourceSets {
main.java.srcDirs = ['src/main/java', 'src/main/gen']
}
group 'org.vpoverennov'
version '0.7'
sourceCompatibility = 17
repositories {
mavenCentral()
}
//dependencies {
// testCompile group: 'junit', name: 'junit', version: '4.12'
//}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version.set('2024.1')
}
patchPluginXml {
sinceBuild.set("241")
untilBuild.set("244.*")
changeNotes.set(provider {"""
v0.5:
<ul>
<li>Add compatibility with IDEA 2023
</ul>
v0.4:
<ul>
<li>Add compatibility with IDEA 2022
</ul>
v0.3:
<ul>
<li>Add compatibility with IDEA 2020
</ul>
v0.2:
<ul>
<li>Fixed end of line comments breaking parsing.
<li>Fixed \\' and \\" in strings.
<li>Updated icon.
</ul>
"""})
}