-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
45 lines (39 loc) · 884 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
37
38
39
40
41
42
43
44
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.6.2'
}
apply plugin: 'java'
sourceCompatibility = 1.8
targetCompatibility = 1.8
group 'github.com.cpdncristiano.getx_snippets'
version '1.0.3'
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.13'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version '2020.2.1'
}
intellij {
version '2019.2'
plugins 'java'
updateSinceUntilBuild = true
patchPluginXml {
sinceBuild '191'
untilBuild '202.*'
changeNotes """
<h1>1.0.3</h1>
is now compatible with android studio >=3.6
<h1>1.0.2</h1>
is now compatible with android studio >=4.0
<h1>1.0-SNAPSHOT</h1>
initial release"""
}
}
publishPlugin {
channels releaseChannel
token intellijToken
}