aboutsummaryrefslogtreecommitdiffstats
path: root/ut-monitoring/build.gradle
diff options
context:
space:
mode:
authorBelen Pruvost <belen.pruvost@sonarsource.com>2021-11-11 14:16:24 +0100
committersonartech <sonartech@sonarsource.com>2021-11-19 20:03:27 +0000
commit92f482f2aa43e4aa36e0fda377d13b9dc3282ff9 (patch)
treeb3ab8cf7b11a56c604bfc2a105c5d8ad634d6521 /ut-monitoring/build.gradle
parente63a5e9b07290d49a790b807af8915a48b6c28ca (diff)
downloadsonarqube-92f482f2aa43e4aa36e0fda377d13b9dc3282ff9.tar.gz
sonarqube-92f482f2aa43e4aa36e0fda377d13b9dc3282ff9.zip
SONAR-15631 - New UT Monitoring Module
Diffstat (limited to 'ut-monitoring/build.gradle')
-rw-r--r--ut-monitoring/build.gradle19
1 files changed, 19 insertions, 0 deletions
diff --git a/ut-monitoring/build.gradle b/ut-monitoring/build.gradle
new file mode 100644
index 00000000000..84f4b1ac066
--- /dev/null
+++ b/ut-monitoring/build.gradle
@@ -0,0 +1,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 project(path: ':sonar-plugin-api', configuration: 'shadow')
+
+ compileOnly 'org.aspectj:aspectjtools'
+}
+
+sonarqube {
+ skipProject = true
+}