forked from DocHubTeam/DocHubIdeaPlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
80 lines (71 loc) · 2.36 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
plugins {
id 'org.jetbrains.intellij' version '1.11.0' //1.8.0?
id 'java'
}
group 'org.dochub.idea'
version '2.2.3-beta'
sourceSets.main.java.srcDirs 'src/main/gen'
repositories {
mavenCentral()
}
jar {
manifest {
attributes("PLANTUML_LIMIT_SIZE": "24384")
}
}
dependencies {
implementation 'com.ibm.jsonata4java:JSONata4Java:1.6.1'
/*
implementation 'org.eclipse.elk:org.eclipse.elk.core:0.8.1'
implementation 'org.eclipse.elk:org.eclipse.elk.alg.common:0.8.1'
implementation 'org.eclipse.elk:org.eclipse.elk.alg.layered:0.8.1'
implementation 'org.eclipse.elk:org.eclipse.elk.alg.mrtree:0.8.1'
implementation 'org.eclipse.elk:org.eclipse.elk.graph:0.8.1'
implementation 'org.eclipse.emf:org.eclipse.emf.ecore:2.27.0'
*/
implementation files('jars/elk-full.jar')
implementation files('jars/plantuml.jar')
// implementation 'net.sourceforge.plantuml'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
type = 'IC'
version = '2022.3.1'
plugins = ['yaml', 'com.intellij.java']
}
buildSearchableOptions {
enabled = false
}
patchPluginXml {
changeNotes = """
Beta version of DocHub Plugin<br>
<em>
<ul>
<li>DocHub core: v2.6.2;</li>
<li>Suggests for the structure of architecture manifests (yaml);</li>
<li>Suggests for the values of manifest fields;</li>
<li>Fast navigation through manifests;</li>
<li>Problems highlighting;</li>
<li>JSONata file support;</li>
<li>Mapping architecture on the code;</li>
<li>Added the datasets and the table documents support;</li>
<li>Refactored subsystem of metamodel validation;</li>
<li>Document templates.</li>
<li>Support Eclipse ELK render core;</li>
<li>Custom entities;</li>
<li>Mermaid support;</li>
<li>Network diagram support;</li>
<li>Widgets;</li>
<li>Added syntax color support to Markdown documents;</li>
<li>Added syntax color support to JSOBata DevTool.</li>
<ul>
</em>
"""
sinceBuild = "223"
untilBuild = "223.*"
}
test {
useJUnitPlatform()
}