-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
51 lines (43 loc) · 1.1 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
plugins {
id 'java'
id 'org.jetbrains.intellij' version '1.13.3'
}
group 'com.github.novotnyr'
version '6'
sourceCompatibility = 11
targetCompatibility = 11
repositories {
mavenCentral()
}
ext {
ideaVersion = '2022.1'
ijPlatform = System.properties['ijPlatform']
if (ijPlatform != null) {
ideaVersion = ijPlatform
}
}
dependencies {
implementation 'com.ecwid.consul:consul-api:1.4.5'
implementation 'com.google.code.gson:gson:2.8.9'
implementation 'commons-codec:commons-codec:1.13'
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
testImplementation group: 'junit', name: 'junit', version: '4.13.1'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version = ideaVersion
updateSinceUntilBuild = false
}
patchPluginXml {
sinceBuild = '221'
changeNotes = """
<ul>
<li>Require at least Platform 2021.1</li>
<li>Fix issues with icon loading in the new Platform version</li>
<li>Improve API compatibility</li>
</ul>
"""
}
publishPlugin {
token = intellijPublishToken
}