This repository has been archived by the owner on Jul 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.gradle
63 lines (49 loc) · 1.42 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
54
55
56
57
58
59
60
61
62
63
plugins {
id 'org.jetbrains.intellij' version '1.1.4'
id 'org.jetbrains.changelog' version '1.2.1'
id 'com.github.ldenisey.setversions' version '1.0.0'
}
apply plugin: 'org.jetbrains.changelog'
group = 'com.javampire'
version = '2.1.2-SNAPSHOT'
sourceCompatibility = 1.11
targetCompatibility = 1.11
sourceSets.main.java.srcDirs = ['src/main/java', 'src/main/gen']
ext {
pluginVerifierIdeVersions = "CL-2020.1, " +
"GO-2020.1, " +
"IIC-2020.1.3, " +
"PCC-2020.1, " +
"PS-2020.1, " +
"RD-2020.1, " +
"WS-2020.1"
}
repositories {
mavenCentral()
}
dependencies {
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
}
intellij {
version.set("212-EAP-SNAPSHOT")
//plugins.set(['psiviewer:203-SNAPSHOT']) // For debugging the parser only
updateSinceUntilBuild.set(false)
patchPluginXml {
sinceBuild.set('201.6668')
untilBuild.set('')
changeNotes.set(provider { changelog.getLatest().toHTML() })
}
}
// Read more: https://github.com/JetBrains/gradle-changelog-plugin
changelog {
version.set(project.version)
header.set(project.version)
headerParserRegex.set(~/\d\.\d\.\d(-SNAPSHOT)?/)
unreleasedTerm.set("Unreleased")
}
runPluginVerifier {
ideVersions = (List) pluginVerifierIdeVersions.split(',')
}
publishPlugin {
token = System.getenv("intellijPublishToken")
}