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.

pom.xml 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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>4.2-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>sonar-maven-plugin</artifactId>
  10. <packaging>maven-plugin</packaging>
  11. <name>SonarQube :: Maven2 Plugin</name>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.apache.maven.shared</groupId>
  15. <artifactId>maven-dependency-tree</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.codehaus.sonar.runner</groupId>
  19. <artifactId>sonar-runner-api</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.apache.maven</groupId>
  23. <artifactId>maven-plugin-api</artifactId>
  24. <scope>provided</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.apache.maven</groupId>
  28. <artifactId>maven-core</artifactId>
  29. <scope>provided</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.apache.maven</groupId>
  33. <artifactId>maven-project</artifactId>
  34. <scope>provided</scope>
  35. </dependency>
  36. <!-- Test -->
  37. <dependency>
  38. <groupId>junit</groupId>
  39. <artifactId>junit</artifactId>
  40. <scope>test</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.mockito</groupId>
  44. <artifactId>mockito-all</artifactId>
  45. <scope>test</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.easytesting</groupId>
  49. <artifactId>fest-assert</artifactId>
  50. <scope>test</scope>
  51. </dependency>
  52. </dependencies>
  53. </project>