diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2014-01-27 23:27:51 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2014-01-27 23:28:03 +0100 |
commit | 4e5a1b8ea2fa37ac5064f7010d70ec2c9926c18b (patch) | |
tree | 148219f8f40b3981a1c72318139b7266a52f82d3 /plugins/sonar-xoo-plugin/pom.xml | |
parent | 36805421f21c3dbc2b0638d27ff9ece3d2cf3156 (diff) | |
download | sonarqube-4e5a1b8ea2fa37ac5064f7010d70ec2c9926c18b.tar.gz sonarqube-4e5a1b8ea2fa37ac5064f7010d70ec2c9926c18b.zip |
Refactor Xoo plugin
Diffstat (limited to 'plugins/sonar-xoo-plugin/pom.xml')
-rw-r--r-- | plugins/sonar-xoo-plugin/pom.xml | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/plugins/sonar-xoo-plugin/pom.xml b/plugins/sonar-xoo-plugin/pom.xml index 239ace4bb2e..3c7e16bc6ee 100644 --- a/plugins/sonar-xoo-plugin/pom.xml +++ b/plugins/sonar-xoo-plugin/pom.xml @@ -11,7 +11,7 @@ <artifactId>sonar-xoo-plugin</artifactId> <name>SonarQube :: Plugins :: Xoo</name> <packaging>sonar-plugin</packaging> - <description>Fake language plugin for backend tests.</description> + <description>Sample of plugin to document and test available APIs</description> <dependencies> <dependency> @@ -24,6 +24,13 @@ <artifactId>sonar-plugin-api</artifactId> <scope>provided</scope> </dependency> + + <!-- unit testing --> + <dependency> + <groupId>org.easytesting</groupId> + <artifactId>fest-assert</artifactId> + <scope>test</scope> + </dependency> <dependency> <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-testing-harness</artifactId> @@ -39,7 +46,7 @@ <configuration> <pluginKey>xoo</pluginKey> <pluginName>Xoo</pluginName> - <pluginClass>org.sonar.plugins.xoo.XooPlugin</pluginClass> + <pluginClass>org.sonar.xoo.XooPlugin</pluginClass> </configuration> </plugin> </plugins> |