diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2014-09-30 00:07:03 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2014-09-30 00:07:03 +0200 |
commit | c6dab978b4e06918c7b96684a06c50c8aca74315 (patch) | |
tree | d16b803b094b8984ad722d87ae23d709da37f9df /sonar-testing-harness/pom.xml | |
parent | 73e2ceadeb3d0f44d3a96a07947e26531c409053 (diff) | |
download | sonarqube-c6dab978b4e06918c7b96684a06c50c8aca74315.tar.gz sonarqube-c6dab978b4e06918c7b96684a06c50c8aca74315.zip |
Maven profiles for each technical stack
and remove sonar-channel helpers from sonar-testing-harness
Diffstat (limited to 'sonar-testing-harness/pom.xml')
-rw-r--r-- | sonar-testing-harness/pom.xml | 27 |
1 files changed, 12 insertions, 15 deletions
diff --git a/sonar-testing-harness/pom.xml b/sonar-testing-harness/pom.xml index bd91b11daed..e474953c6b0 100644 --- a/sonar-testing-harness/pom.xml +++ b/sonar-testing-harness/pom.xml @@ -20,10 +20,6 @@ <artifactId>jsonassert</artifactId> </dependency> <dependency> - <groupId>com.google.code.findbugs</groupId> - <artifactId>jsr305</artifactId> - </dependency> - <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> @@ -32,21 +28,22 @@ <artifactId>hamcrest-all</artifactId> </dependency> <dependency> - <!-- used only for org.sonar.test.channel classes --> - <groupId>org.codehaus.sonar</groupId> - <artifactId>sonar-channel</artifactId> - <optional>true</optional> + <groupId>org.mockito</groupId> + <artifactId>mockito-core</artifactId> </dependency> <dependency> - <groupId>org.codehaus.sonar</groupId> - <artifactId>sonar-plugin-api</artifactId> - <version>${project.version}</version> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> </dependency> <dependency> - <groupId>org.codehaus.sonar</groupId> - <artifactId>sonar-plugin-api</artifactId> - <version>${project.version}</version> - <type>test-jar</type> + <groupId>commons-lang</groupId> + <artifactId>commons-lang</artifactId> + </dependency> + + <dependency> + <groupId>com.google.code.findbugs</groupId> + <artifactId>jsr305</artifactId> + <scope>provided</scope> </dependency> </dependencies> </project> |