-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
37 lines (32 loc) · 856 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
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.7.2'
}
group 'com.zenden2k'
version '1.6.1'
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
type='IU'
version '2020.3.3'
// https://plugins.jetbrains.com/plugin/6610-php/versions
plugins = ['com.jetbrains.php:203.7717.11', 'com.intellij.css', 'com.intellij.database']
}
patchPluginXml {
changeNotes """
- Allow find usages of controller xml file <br/>
- Resolve database table references in joins (in object xml files)"""
}
test {
useJUnitPlatform()
// Show test results.
testLogging {
events "passed", "skipped", "failed"
}
}