aboutsummaryrefslogtreecommitdiffstats
path: root/tests/upgrade/pom.xml
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2017-04-04 08:42:23 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2017-04-11 14:56:45 +0200
commit41068dbab56d7f3fab9bb8ef0ba026cdd6442b19 (patch)
tree6dd185c7dd38b92922d355ac1ce1560f20493f9c /tests/upgrade/pom.xml
parent964fff7ca9f072e6e084c0fac605980f19bc0278 (diff)
downloadsonarqube-41068dbab56d7f3fab9bb8ef0ba026cdd6442b19.tar.gz
sonarqube-41068dbab56d7f3fab9bb8ef0ba026cdd6442b19.zip
Fix dependency of upgrade tests on jsr305
Tests use JSR305 annotations, so the Maven dependency must be explicitly defined instead of relying on transitive dependency.
Diffstat (limited to 'tests/upgrade/pom.xml')
-rw-r--r--tests/upgrade/pom.xml5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/upgrade/pom.xml b/tests/upgrade/pom.xml
index dc46f2f5602..4bb1219e822 100644
--- a/tests/upgrade/pom.xml
+++ b/tests/upgrade/pom.xml
@@ -18,6 +18,11 @@
<dependencies>
<dependency>
+ <groupId>com.google.code.findbugs</groupId>
+ <artifactId>jsr305</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>sonar-ws</artifactId>
<version>${project.version}</version>