-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
40 lines (36 loc) · 1.45 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
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.6.5'
}
group 'com.wangjin.Generate.EolinkerDoc'
version '1.0.0'
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'cn.hutool', name: 'hutool-core', version: '5.4.0'
compileOnly 'org.projectlombok:lombok:1.18.12'
annotationProcessor 'org.projectlombok:lombok:1.18.12'
// compile group: 'com.konghq', name: 'unirest-java', version: '3.11.06'
// https://mvnrepository.com/artifact/com.google.code.gson/gson
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
compile group: 'com.github.javaparser', name: 'javaparser-core', version: '3.16.1'
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.7.0'
}
intellij {
version '2020.1'
}
patchPluginXml {
changeNotes """
<pre>
Release v1.0.0
1.Support `Multi-select Controller` file for interface document synchronization. <br/>
2.Support `infinite nesting`, `infinite inheritance` parsing. (`self-reference` will not infinite loop, `recursion depth is 2`). <br/>
3.Support `Dynamic update` document, the default is closed state, you need to manually open it. <br/>
4.Support `Select code block` to synchronize part of the interface document. Modify the document by default <br/>
5.Support `Select Group` to generate documents.
</pre>"""
sinceBuild "145.258"
untilBuild null
}