You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.codehaus.sonar</groupId>
  6. <artifactId>sonar</artifactId>
  7. <version>2.3-SNAPSHOT</version>
  8. <relativePath>../..</relativePath>
  9. </parent>
  10. <groupId>org.codehaus.sonar.plugins</groupId>
  11. <artifactId>sonar-clover-plugin</artifactId>
  12. <packaging>sonar-plugin</packaging>
  13. <name>Sonar :: Plugins :: Clover</name>
  14. <description>Get code coverage with Atlassian Clover</description>
  15. <build>
  16. <testResources>
  17. <testResource>
  18. <directory>${basedir}/src/main/resources</directory>
  19. </testResource>
  20. <testResource>
  21. <directory>${basedir}/src/test/resources</directory>
  22. </testResource>
  23. </testResources>
  24. <plugins>
  25. <plugin>
  26. <groupId>org.codehaus.sonar</groupId>
  27. <artifactId>sonar-packaging-maven-plugin</artifactId>
  28. <extensions>true</extensions>
  29. <configuration>
  30. <pluginKey>clover</pluginKey>
  31. <pluginName>Clover</pluginName>
  32. <pluginClass>org.sonar.plugins.clover.CloverPlugin</pluginClass>
  33. </configuration>
  34. </plugin>
  35. <plugin>
  36. <artifactId>maven-deploy-plugin</artifactId>
  37. <configuration>
  38. <skip>true</skip>
  39. </configuration>
  40. </plugin>
  41. </plugins>
  42. </build>
  43. <dependencies>
  44. <dependency>
  45. <groupId>org.codehaus.sonar</groupId>
  46. <artifactId>sonar-plugin-api</artifactId>
  47. <version>${project.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.codehaus.sonar</groupId>
  51. <artifactId>sonar-testing-harness</artifactId>
  52. <scope>test</scope>
  53. </dependency>
  54. </dependencies>
  55. </project>