diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2017-04-04 08:42:23 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2017-04-11 14:56:45 +0200 |
commit | 41068dbab56d7f3fab9bb8ef0ba026cdd6442b19 (patch) | |
tree | 6dd185c7dd38b92922d355ac1ce1560f20493f9c /tests/upgrade/pom.xml | |
parent | 964fff7ca9f072e6e084c0fac605980f19bc0278 (diff) | |
download | sonarqube-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.xml | 5 |
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> |