forked from dmoebius/intellij-tool-windows-actions
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
36 lines (31 loc) · 819 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.10'
}
group 'switcher.intellij'
version '1.0.0'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
// https://plugins.jetbrains.com/docs/intellij/publishing-plugin.html#publishing-to-the-jetbrains-plugins-repository
// https://plugins.jetbrains.com/docs/intellij/deployment.html#using-environment-variables
intellij {
version '2020.2.4'
}
patchPluginXml {
sinceBuild '191'
untilBuild '221.*'
changeNotes """
<dl>
<dt>Version 1.0.0</dt>
</dl>"""
}
publishPlugin {
channels = ['beta']
token = System.getenv("ORG_GRADLE_PROJECT_intellijPublishToken")
}