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

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

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

    compileOnlyApi 'org.aspectj:aspectjtools'
}

sonar {
    skipProject = true
}