aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-telemetry-core/build.gradle
blob: 010d750923a4f79527c365f49fcd09ba240994ea (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
description = 'Module providing the core classes and interfaces for telemetry metrics in SonarQube.'

sonar {
    properties {
        property 'sonar.projectName', "${projectTitle} :: Server :: Telemetry Core"
    }
}

dependencies {
    compileOnlyApi 'com.github.spotbugs:spotbugs-annotations'

    implementation 'com.fasterxml.jackson.core:jackson-databind'

    testImplementation(platform("org.junit:junit-bom:5.9.1"))
    testImplementation 'org.assertj:assertj-core'
    testImplementation 'org.junit.jupiter:junit-jupiter-api'
    testImplementation 'org.junit.jupiter:junit-jupiter-params'

    testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
}

tasks.test {
    useJUnitPlatform()
}