-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
72 lines (67 loc) · 2.48 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
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.5.0'
}
group 'io.github.onlyeat3'
version '1.1.6'
repositories {
maven {url 'http://maven.aliyun.com/nexus/content/groups/public/'}
maven {url 'https://maven.aliyun.com/nexus/content/repositories/google'}
maven{url 'https://maven.aliyun.com/nexus/content/repositories/jcenter'}
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
implementation 'cn.hutool:hutool-json:5.7.13'
implementation 'cn.hutool:hutool-http:5.7.13'
implementation 'cn.hutool:hutool-db:5.7.13'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
// full list of IntelliJ IDEA releases at https://www.jetbrains.com/intellij-repository/releases
// full list of IntelliJ IDEA EAP releases at https://www.jetbrains.com/intellij-repository/snapshots
version 'IU-2020.1'
//version '2018.2.2'
sandboxDirectory project.rootDir.canonicalPath + "/.sandbox"
plugins 'java',
//'PythonCore:201.6073.9',
'Pythonid:201.6668.121',
'Kotlin',
'JavaScriptLanguage',
'Dart:201.6668.156',
'Groovy',
'properties',
'org.jetbrains.plugins.ruby:201.6668.113',
'com.jetbrains.php:201.6668.153',
'DatabaseTools',
'org.jetbrains.plugins.go:201.6668.60.126'
// plugins = ["PythonCore:2018.2.182.3684.101"]
}
patchPluginXml {
sinceBuild '181.*'
untilBuild '999.*'
changeNotes """
<h5>1.1.6</h5>
<em>add 侧边栏搜索框</em>
<h5>1.1.5</h5>
<em>fix Dart环境下,选中错乱问题</em>
<h5>1.1.4</h5>
<em>更新until-build</em>
<h5>1.1.3</h5>
<em>修复不同语言命名规则适配不完整</em>
<em>单词差找逻辑改为模糊匹配,同时展示提示时,显示单词对应的中文解释</em>
<h5>1.1.2</h5>
<em>增加对EAP版本IDE的支持</em>
<em>简化插件描述</em>
<em>强化对golang的命名规则支持</em>
<h5>1.1.1</h5>
<em>纠正IDE最小版本限制</em>
<em>增加作者联系方式,方便反馈问题</em>
<h5>1.1</h5>
<em>上下文菜单直接显示中文</em>
<em>最小版本切换到2018.2</em>
<em>根据当前语言,生成符合命名规则的变量名。</em>
<h5>1.0</h5>
<em>first version</em>"""
}