diff options
author | David Gageot <david@gageot.net> | 2012-05-05 10:24:36 +0200 |
---|---|---|
committer | David Gageot <david@gageot.net> | 2012-05-07 07:29:25 +0200 |
commit | 23ce7323fc6044a4d889a3914112b1f93a7470b6 (patch) | |
tree | 4fda145cd29205994c1eb8214e3ade06150a3d3b /sonar-plugin-api/pom.xml | |
parent | b2f924aab48b5f078715779875e077a9c2472f85 (diff) | |
download | sonarqube-23ce7323fc6044a4d889a3914112b1f93a7470b6.tar.gz sonarqube-23ce7323fc6044a4d889a3914112b1f93a7470b6.zip |
InputFile should return an input stream to make it easier to test code reading InputFiles
Diffstat (limited to 'sonar-plugin-api/pom.xml')
-rw-r--r-- | sonar-plugin-api/pom.xml | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/sonar-plugin-api/pom.xml b/sonar-plugin-api/pom.xml index de299284334..22a6a4fdef2 100644 --- a/sonar-plugin-api/pom.xml +++ b/sonar-plugin-api/pom.xml @@ -84,18 +84,6 @@ <artifactId>commons-configuration</artifactId> </dependency> <dependency> - <groupId>commons-io</groupId> - <artifactId>commons-io</artifactId> - </dependency> - <dependency> - <groupId>commons-lang</groupId> - <artifactId>commons-lang</artifactId> - </dependency> - <dependency> - <groupId>commons-collections</groupId> - <artifactId>commons-collections</artifactId> - </dependency> - <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> </dependency> @@ -161,6 +149,11 @@ <scope>test</scope> </dependency> <dependency> + <groupId>org.easytesting</groupId> + <artifactId>fest-assert</artifactId> + <scope>test</scope> + </dependency> + <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <scope>test</scope> |