-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
50 lines (40 loc) · 934 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
38
39
40
41
42
43
44
45
46
47
48
49
50
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.4.9'
}
group 'com.xinky.me.theme'
version '1.7.12'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven { url 'https://www.jetbrains.com/intellij-repository/snapshots' }
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version 'LATEST-EAP-SNAPSHOT'
updateSinceUntilBuild false
}
runIde {
jvmArgs '-Xmx1G'
}
patchPluginXml {
sinceBuild '191.8026.42'
// untilBuild '193.*'
version project.getVersion().toString()
changeNotes """
<h3>1.7.12</h3>
<ul>
<li>fix for 2019.3!</li>
<li>add some tree line align</li>
</ul>
"""
}
publishPlugin {
token 'perm:emhhbmd4aW5rdW45NA==.cGx1Z2ludG9rZW4=.omoChuhZfl5Ew5yH3SereGYzk3ypd7'
}