-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
51 lines (40 loc) · 1023 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 '0.6.5'
}
group 'github.mengzz'
version '1.3'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'org.jetbrains.intellij'
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
annotationProcessor 'org.projectlombok:lombok:1.18.20'
compileOnly 'org.projectlombok:lombok:1.18.20'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version 'IC-2018.3'
updateSinceUntilBuild false
}
patchPluginXml {
changeNotes """
<b>1.3</b> <br>
<em> ● Support combined search with class annotation </em><br>
<br>
<b>1.2</b> <br>
<em> ● Support config show qualified name </em><br>
<br>
<b>1.0</b> <br>
<em> ● Support go to annotation </em><br>
<br>
<br>"""
}