-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbuild.gradle
36 lines (29 loc) · 855 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
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.4.16'
}
group 'com.roomj'
version '1.5'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
}
intellij {
version '2019.3.2'
updateSinceUntilBuild false
}
patchPluginXml {
changeNotes """
<strong>1.5:</strong> Update documenation with more details on how to customize titles.<br>
<strong>1.4:</strong> Customize how the title is simplified with your own custom formats<br>
<strong>1.3:</strong> Actually fix compatibility range<br>
<strong>1.2:</strong> Try to Fix compatibility range<br>
<strong>1.1:</strong> updating to use non-deprecated APIs<br>
<strong>1.0:</strong> initial version<br>"""
}
publishPlugin {
token intellijPublishToken
}