diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-07-21 16:37:55 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-07-21 17:14:59 +0200 |
commit | 4027764b3d93d2c83faa37a275715542a3df6054 (patch) | |
tree | 83fc935ce7344ed85e83428c106884095371ae31 /it/it-tests/pom.xml | |
parent | 853cb392d56ded01fe1e1bc902022d56cf4a90e8 (diff) | |
download | sonarqube-4027764b3d93d2c83faa37a275715542a3df6054.tar.gz sonarqube-4027764b3d93d2c83faa37a275715542a3df6054.zip |
Add integration tests for manual and common rules
Diffstat (limited to 'it/it-tests/pom.xml')
-rw-r--r-- | it/it-tests/pom.xml | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/it/it-tests/pom.xml b/it/it-tests/pom.xml index 774e9598149..6a604298aea 100644 --- a/it/it-tests/pom.xml +++ b/it/it-tests/pom.xml @@ -38,43 +38,46 @@ <scope>provided</scope> </dependency> <dependency> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + <version>15.0</version> + </dependency> + <dependency> <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-ws-client</artifactId> <version>5.0</version> - <scope>test</scope> </dependency> <dependency> <groupId>com.sonarsource.orchestrator</groupId> <artifactId>sonar-orchestrator</artifactId> <version>3.2</version> - <scope>test</scope> + </dependency> + <dependency> + <groupId>org.codehaus.sonar</groupId> + <artifactId>sonar-update-center-common</artifactId> + <version>1.12.1</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> - <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> - <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> - <scope>test</scope> </dependency> <dependency> <groupId>com.googlecode.json-simple</groupId> <artifactId>json-simple</artifactId> <version>1.1</version> - <scope>test</scope> </dependency> <dependency> <groupId>org.skyscreamer</groupId> <artifactId>jsonassert</artifactId> <version>1.2.0</version> - <scope>test</scope> </dependency> |