-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.gradle
49 lines (39 loc) · 907 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
plugins {
id "com.github.hierynomus.license" version "${hierynomusLicenseVersion}"
id "org.owasp.dependencycheck" version "${owaspVersion}"
id "org.sonarqube" version "${sonarQubeVersion}"
id 'idea'
id 'jacoco'
}
repositories {
mavenCentral()
}
idea {
project {
jdkName = '11'
languageLevel = '11'
}
module {
downloadSources = true
excludeDirs -= file(buildDir)
buildDir.listFiles({ d, f -> f != 'generated-sources/wsimport' } as FilenameFilter).each { excludeDirs += it }
}
}
wrapper {
gradleVersion = '7.6'
}
ext {
project_version='3.0.7'
}
allprojects {
group = 'fi.vrk.xroad'
version = project_version
}
subprojects {
apply plugin: 'com.github.hierynomus.license'
license {
header rootProject.file('LICENSE.txt')
include "**/*.java"
exclude "**/wsimport/*"
}
}