forked from jpos/jPOS-EE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (33 loc) · 870 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
apply from: 'libraries.gradle'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'org.owasp:dependency-check-gradle:6.1.5'
}
}
allprojects {
apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: 'org.owasp.dependencycheck'
group = 'org.jpos.ee'
version = '2.2.9-SNAPSHOT'
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
}
}
subprojects {
apply from: "${rootProject.projectDir}/publishing.gradle"
if (name != 'bom') {
apply from: "${rootProject.projectDir}/subprojects.gradle"
}
}
// Configure IDEA to use Git
idea.project.ipr {
withXml { provider ->
provider.node.component.find { it.@name == 'VcsDirectoryMappings' }.mapping.@vcs = 'Git'
}
}