This repository has been archived by the owner on Aug 26, 2022. It is now read-only.
generated from remal/oss-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
47 lines (41 loc) · 1.53 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
plugins {
id 'org.jetbrains.gradle.plugin.idea-ext' version '1.1.4'
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
apply from: 'gradle/helpers.gradle'
apply from: 'gradle/dependency-versions.gradle'
apply from: 'gradle/java.gradle'
apply from: 'gradle/checkstyle.gradle'
apply from: 'gradle/environment.gradle'
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
idea.project.settings {
delegateActions {
delegateBuildRunToGradle = true
testRunner = 'GRADLE'
}
runConfigurations {
//noinspection UnnecessaryQualifiedReference
defaults(org.jetbrains.gradle.ext.Application) {
jvmArgs = '-Djansi.passthrough=true'
shortenCommandLine = 'ARGS_FILE'
}
//noinspection UnnecessaryQualifiedReference
defaults(org.jetbrains.gradle.ext.JarApplication) {
jvmArgs = '-Djansi.passthrough=true'
}
//noinspection UnnecessaryQualifiedReference
defaults(org.jetbrains.gradle.ext.JUnit) {
vmParameters = '-Djansi.passthrough=true'
shortenCommandLine = 'ARGS_FILE'
}
//noinspection UnnecessaryQualifiedReference
defaults(org.jetbrains.gradle.ext.TestNG) {
vmParameters = '-Djansi.passthrough=true'
shortenCommandLine = 'ARGS_FILE'
}
//noinspection UnnecessaryQualifiedReference
defaults(org.jetbrains.gradle.ext.Gradle) {
jvmArgs = '-Djansi.passthrough=true'
}
}
}