forked from liuzhihang/toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
37 lines (30 loc) · 812 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
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.4.8'
}
group 'com.liuzhihang.toolkit'
version '1.1.0'
sourceCompatibility = 1.8
repositories {
mavenLocal()
maven { url "https://maven.aliyun.com/repository/public" }
mavenCentral()
jcenter()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'org.dom4j', name: 'dom4j', version: '2.1.1'
// compile group: 'com.alibaba', name: 'fastjson', version: '1.2.58'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version '2020.2'
plugins = ['java']
pluginName 'Toolkit'
updateSinceUntilBuild false
sameSinceUntilBuild false
}
patchPluginXml {
pluginDescription(file(descriptionFile).text)
changeNotes(file(changesFile).text)
}