-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.gradle
43 lines (36 loc) · 1.31 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
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.4.16'
}
group 'com.andreycizov.partialnav'
version '1.2'
sourceCompatibility = 1.8
apply plugin: 'idea'
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version 'IC-171.1834.9' //IntelliJ IDEA 2017.1 dependency; for a full list of IntelliJ IDEA releases please see https://www.jetbrains.com/intellij-repository/releases
pluginName 'idea-partialnav'
updateSinceUntilBuild false
sameSinceUntilBuild false
publishPlugin {
username System.getProperty('ij_plugin_portal_login')
password System.getProperty('ij_plugin_portal_password')
channels 'eap', 'nightly', 'default'
}
}
patchPluginXml {
// please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description
changeNotes """
<ul>
<li>Version 1.2: honour "Prefer moving caret line to minimize editor scrolling" and support navigation by a fixed number of lines</li>
<li>Version 1.1: support partial page up/down with selection, set default keyboard shortcuts</li>
<li>Version 1.0: build the plugin for the first time</li>
</ul>
"""
}