aboutsummaryrefslogtreecommitdiffstats
path: root/ut-monitoring/build.gradle
blob: 173f087ba59f0e9bb9d2a2d82c1db3733a13aa65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
sonarqube {
    properties {
        property 'sonar.projectName', "${projectTitle} :: Java UT Monitoring"
    }
}

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

    compile 'com.google.code.gson:gson'
    compile 'junit:junit'
    compile 'org.sonarsource.api.plugin:sonar-plugin-api'

    compileOnly 'org.aspectj:aspectjtools'
}

sonarqube {
    skipProject = true
}