forked from olivernybroe/intellij-Dictionary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
53 lines (46 loc) · 1.1 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
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.4.4'
}
group 'dk.lost_world'
version '0.2'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
pluginName 'Dictionary'
version '181.2784.17'
type 'IC'
downloadSources true
}
patchPluginXml {
sinceBuild intellij.version
untilBuild null
version project.version
pluginDescription """
Plugin for having a shared dictionary for all members of your project. <br>
<br>
It will automatically find any <code>project.dic</code> files and add them
to the list of dictionaries. <br>
<br>
It will also search packages for dictionary files and add them to our list of dictionaries.
"""
changeNotes """
<p>0.2</p>
<ul>
<li>Added support for listening for when a <code>project.dic</code> file is added, moved, deleted, copied.</li>
</ul>
<p>0.1</p>
<ul>
<li>First edition of the plugin.</li>
</ul>
"""
}
publishPlugin {
token intellijPublishToken
}