-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (30 loc) · 798 Bytes
/
build.gradle
File metadata and controls
35 lines (30 loc) · 798 Bytes
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
/*
* Copyright D3 Ledger, Inc. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
plugins {
id "org.sonarqube" version "2.7.1"
}
allprojects {
apply plugin: 'java'
repositories {
mavenCentral()
jcenter()
maven { url 'https://jitpack.io' }
}
}
sourceCompatibility = 1.8
wrapper {
gradleVersion = 4.10
}
allprojects {
sonarqube {
properties {
property "sonar.github.repository", "d3ledger/business-rules"
property "sonar.projectKey", "d3:business-rules"
property "sonar.java.binaries", "${project.projectDir}/build/classes"
property "sonar.java.libraries", "${project.projectDir}/build/libs"
property "sonar.exclusions", "**/integration-test/**"
}
}
}