aboutsummaryrefslogtreecommitdiffstats
path: root/test-monitoring/build.gradle
blob: 41b025071e6bfb02f4de08a6015ec282c6e382fa (plain)
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
sonar {
    properties {
        property 'sonar.projectName', "${projectTitle} :: Java Tests Monitoring"
    }
}

dependencies {
    // please keep the list grouped by configuration and ordered by name

    api 'com.google.code.gson:gson'
    api 'junit:junit'

    compileOnlyApi 'org.aspectj:aspectjtools'
    compileOnlyApi 'com.google.code.findbugs:jsr305'

    testImplementation 'org.assertj:assertj-core'
    testImplementation 'org.mockito:mockito-core'
    testImplementation 'org.aspectj:aspectjweaver:1.9.20.1'
}

tasks.withType(JavaCompile) {
    options.release = 11
}

sonar {
    skipProject = true
}