-
Notifications
You must be signed in to change notification settings - Fork 74
/
build.gradle
127 lines (98 loc) · 3.46 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
plugins {
id 'java'
id 'org.jetbrains.intellij' version '1.12.0'
// id "org.jetbrains.kotlin.jvm" version '1.2.70'
}
group 'com.alibaba.compileflow.designer'
version '1.0.17'
sourceCompatibility = 1.8
repositories {
flatDir {
dirs 'libs'
}
mavenCentral()
maven {
url "https://oss.sonatype.org/content/repositories/snapshots/"
}
// maven {
// url 'http://dl.bintray.com/jetbrains/intellij-plugin-service'
// }
}
sourceSets.main.resources {
srcDirs = ['src/main/java', 'src/main/resources']
include '**/*.xml'
include '**/*.png'
include '**/*.ico'
include '**/*.gif'
}
//ext.kotlin_version = '1.2.71'
allprojects {
dependencies {
implementation fileTree(dir: 'libs', includes: ['*.jar'])
// compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
// compile name: 'miglayout-core-5.3-SNAPSHOT'
// compile name: 'miglayout-swing-5.3-SNAPSHOT'
// compile name: 'mxgraph-all'
// compile name: 'compileflow-1.2.0-SNAPSHOT-jar-with-dependencies'
// compile name: 'logback-core-1.1.8'
// compile name: 'logback-classic-1.1.8'
// testCompile group: 'junit', name: 'junit', version: '4.12'
// testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
}
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
// See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html#intellij-platform-based-products-of-recent-ide-versions
intellij {
// version '2018.2'
// version = '2022.3'
version = '2024.3'
plugins = ['java']
}
patchPluginXml {
changeNotes = """
<em>1.0.0 首发版本</em><br>
1. 首发版本 <br>
<em>1.0.1 优化功能</em><br>
1. 画图模式和编辑模式友好提示 <br>
2. 支持画布放大缩小 <br>
<em>1.0.2 优化功能</em><br>
1. 画图模式和编辑模式友好提示 <br>
2. 节点文案使用英文 <br>
<em>1.0.3 bugfix</em><br>
1. 修复预览javacode不展示问题 <br>
<em>1.0.4 bugfix</em><br>
1. 修复生成测试类找不到问题,以及类目未对应问题 <br>
<em>1.0.5 features</em><br>
1. 支持切换主题 <br>
<em>1.0.6 features</em><br>
1. 支持循环节点中的continue节点和break节点 <br>
<em>1.0.7 bugfix</em><br>
1. 支持2020.3版本安装 <br>
<em>1.0.8 bugfix</em><br>
1. 支持2021.1版本安装 <br>
<em>1.0.9 features</em><br>
1. 支持等待节点 <br>
2. 优化javacode展示 <br>
<em>1.0.10 features</em><br>
1. 支持2021.2版本安装 <br>
<em>1.0.11 features</em><br>
1. 支持布局调整 <br>
<em>1.0.12 bugfix</em><br>
1. 修复一些常规性bug <br>
<em>1.0.13 逻辑优化</em><br>
1. 优化了一些逻辑 <br>
<em>1.0.14 features</em><br>
1. WaitEvent时间支持前置Action <br>
2. 2021.3的idea支持 <br>
<em>1.0.15 bugfix</em><br>
1. 2022.1的idea支持 <br>
<em>1.0.16 bugfix(感谢chenqiyue的PR分支支持)</em><br>
1. 2022.3的idea支持 <br>
2. 修复部分bug <br>
<em>1.0.17 bugfix(感谢landuo的PR分支支持)</em><br>
1. 2024.3的idea支持 <br>
2. 修复部分bug <br>
"""
sinceBuild = '162.*'
untilBuild = '999.*'
}