-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathbuild.gradle
38 lines (36 loc) · 1.5 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
buildscript {
ext {
springBootVersion = '2.7.5'
}
}
plugins {
id 'com.google.cloud.tools.jib' version '3.2.1' apply false
id "org.sonarqube" version "3.1.1"
id "io.spring.dependency-management" version "1.0.13.RELEASE" apply false
id "org.springframework.boot" version "${springBootVersion}" apply false
id "com.github.node-gradle.gulp" version "1.5.3" apply false
}
sonarqube {
properties {
property "sonar.projectName", "IFS"
property "sonar.host.url", "https://devops.innovateuk.org/code-quality"
property "sonar.projectKey", "IFS"
// These exclusions are because SonarQube fails to parse the files
// Raised DHS-400 to contact SonarQube for support
property "sonar.exclusions", "**/*MapperImpl.java," +
"**/CategoryRepositoryIntegrationTest.java," +
"**/ProjectPartnerInviteServiceImpl.java," +
"**/GrantsInviteServiceImpl.java," +
"**/OverheadFileServiceImpl.java," +
"**/InterviewInviteServiceImpl.java," +
"**/AssessmentInviteServiceImpl.java," +
"**/FinanceReviewerServiceImpl.java," +
"**/ApplicationFinanceServiceImpl.java," +
"**/ReviewInviteServiceImpl.java,"
property "sonar.coverage.exclusions",
"**/*ViewModel.java," +
"**/*Resource.java,"
property "sonar.java.source", "1.8"
property "sonar.java.target", "1.8"
}
}