-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.gradle
47 lines (38 loc) · 1.14 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
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.4.19'
}
group 'ro.florinpatan.gopher'
version '2021.1'
sourceCompatibility = 1.8
repositories {
maven { url "https://www.jetbrains.com/intellij-repository/releases" }
maven { url "https://www.jetbrains.com/intellij-repository/snapshots" }
maven { url "https://jetbrains.bintray.com/intellij-third-party-dependencies" }
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
}
intellij {
version 'IU-2021.2'
}
patchPluginXml {
untilBuild '311.*'
changeNotes """
2021.1: Initial compatibility with 2021.*+<br>
2020.3: Initial compatibility with 2020.3<br>
2020.2: Initial compatibility with 2020.2<br>
2020.1: Initial compatibility with 2020.1<br>
2019.2.4: Initial compatibility with 2019.3<br>
2019.2.3: Misc internal changes<br>
2019.2.2: Correct layout for the progress bar. Misc internal changes<br>
2019.2.1: Added plugin icon<br>
2019.2: Initial release<br>"""
}
publishPlugin {
token intellijPublishToken
}
publishPlugin {
channels intellijPublishChannel
}