-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
52 lines (42 loc) · 1019 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
45
46
47
48
49
50
51
52
plugins {
id 'org.jetbrains.intellij' version '0.4.10'
id 'com.github.johnrengelman.shadow' version '5.2.0'
}
repositories {
mavenCentral()
jcenter()
maven { url 'https://dl.bintray.com/jetbrains/intellij-plugin-service' }
maven { url 'https://dl.bintray.com/jtwig/maven' }
}
dependencies {
compile('org.jtwig:jtwig-core:5.87.0.RELEASE') {
exclude group: 'org.slf4j'
}
}
group 'com.github.kunicmarko20.idea.helpable'
version '0.3.2'
apply plugin: 'org.jetbrains.intellij'
apply plugin: 'java'
sourceCompatibility = 1.8
targetCompatibility = 1.8
intellij {
version "IU-${ideaVersion}"
pluginName 'Helpable'
plugins = [
"com.jetbrains.php:${phpPluginVersion}",
'java',
]
}
patchPluginXml {
sinceBuild '192'
changeNotes """
Add change notes here.<br>
<em>most HTML tags may be used</em>"""
}
wrapper {
gradleVersion '5.5.1'
}
shadowJar {
archiveBaseName = "helpable"
archiveClassifier = ideaVersion
}