-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
37 lines (34 loc) · 909 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
buildscript {
repositories {
mavenCentral()
maven { url 'http://dl.bintray.com/jetbrains/intellij-plugin-service' }
}
}
plugins {
id 'org.jetbrains.intellij' version '0.4.9'
id 'com.github.ben-manes.versions' version '0.21.0'
}
intellij {
version ideaVersion
sandboxDirectory project.rootDir.canonicalPath + "/build/idea-sandbox"
downloadSources !System.getenv().containsKey('CI')
updateSinceUntilBuild = false
pluginName name
plugins = [
"com.jetbrains.php:${phpPluginVersion}",
'CSS',
'java',
'java-i18n',
'PsiViewer:3.28.93',
'properties'
]
}
patchPluginXml {
changeNotes project.property("changeNotes").toString()
}
apply plugin: "org.jetbrains.intellij"
apply plugin: "java"
wrapper {
gradleVersion = '6.3'
distributionType = Wrapper.DistributionType.ALL
}