-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
23 lines (21 loc) · 884 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
plugins {
id 'java-library'
// Automatic lombok configuration
id 'io.freefair.lombok' version "$lombokVersion"
// mutation testing
id 'info.solidsoft.pitest' version "$pitestVersion" apply false
/* Aggregate Jacoco Report Plugin */
id 'io.freefair.aggregate-jacoco-report' version "$jacocoPdfVersion" apply false
/* help analyzing projects with SonarQube */
id 'org.sonarqube' version "$sonarQubeVersion" apply false
}
group = "es.pedcod.mutation"
version = "0.0.1-SNAPSHOT"
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
// repositories allowed to management dependencies
apply from: "$rootDir/config/gradle/repositories.gradle"
// Add support to testing step
apply from: "$rootDir/config/gradle/testing.gradle"
// Add support to analyzing projects and properties for this
apply from: "$rootDir/config/gradle/sonarqube.gradle"